@vendure/dashboard 3.5.0-minor-202510071456 → 3.5.0-minor-202510161257
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/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/ast-utils.spec.js +3 -3
- package/dist/vite/vite-plugin-hmr.d.ts +8 -0
- package/dist/vite/vite-plugin-hmr.js +34 -0
- package/dist/vite/vite-plugin-theme.js +6 -6
- package/dist/vite/vite-plugin-transform-index.js +6 -1
- package/dist/vite/vite-plugin-vendure-dashboard.d.ts +31 -4
- package/dist/vite/vite-plugin-vendure-dashboard.js +89 -34
- package/package.json +17 -5
- package/src/app/app-providers.tsx +4 -1
- package/src/app/common/map-faceted-filter-fields.ts +21 -0
- package/src/app/main.tsx +3 -1
- package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_administrators/administrators.tsx +13 -3
- package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +6 -13
- package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +1 -1
- package/src/app/routes/_authenticated/_assets/assets.tsx +17 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_collections/collections.tsx +5 -0
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +0 -1
- package/src/app/routes/_authenticated/_customers/customers.tsx +9 -5
- package/src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_facets/components/facet-value-bulk-actions.tsx +16 -0
- package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +43 -12
- package/src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx +14 -5
- package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +117 -92
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx +2 -1
- package/src/app/routes/_authenticated/_orders/components/order-table-totals.tsx +26 -27
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +5 -3
- package/src/app/routes/_authenticated/_orders/components/state-transition-control.tsx +6 -9
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +17 -1
- package/src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx +48 -281
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +59 -40
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +73 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +312 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_products/products.tsx +6 -2
- package/src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx +4 -8
- package/src/app/routes/_authenticated/_promotions/components/promotion-bulk-actions.tsx +0 -10
- package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_promotions/promotions.tsx +12 -0
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +6 -2
- package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +4 -10
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +9 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +1 -0
- package/src/app/routes/_authenticated/_zones/zones.graphql.ts +2 -2
- package/src/app/routes/login.tsx +2 -2
- package/src/i18n/locales/ar.po +420 -289
- package/src/i18n/locales/cs.po +420 -289
- package/src/i18n/locales/de.po +420 -289
- package/src/i18n/locales/en.po +420 -289
- package/src/i18n/locales/es.po +420 -289
- package/src/i18n/locales/fa.po +420 -289
- package/src/i18n/locales/fr.po +468 -337
- package/src/i18n/locales/he.po +420 -289
- package/src/i18n/locales/hr.po +420 -289
- package/src/i18n/locales/it.po +420 -289
- package/src/i18n/locales/ja.po +420 -289
- package/src/i18n/locales/nb.po +420 -289
- package/src/i18n/locales/ne.po +420 -289
- package/src/i18n/locales/pl.po +420 -289
- package/src/i18n/locales/pt_BR.po +420 -289
- package/src/i18n/locales/pt_PT.po +420 -289
- package/src/i18n/locales/ru.po +420 -289
- package/src/i18n/locales/sv.po +420 -289
- package/src/i18n/locales/tr.po +420 -289
- package/src/i18n/locales/uk.po +420 -289
- package/src/i18n/locales/zh_Hans.po +420 -289
- package/src/i18n/locales/zh_Hant.po +420 -289
- package/src/lib/components/data-input/affixed-input.stories.tsx +93 -0
- package/src/lib/components/data-input/affixed-input.tsx +5 -2
- package/src/lib/components/data-input/boolean-input.stories.tsx +102 -0
- package/src/lib/components/data-input/checkbox-input.stories.tsx +61 -0
- package/src/lib/components/data-input/datetime-input.stories.tsx +62 -0
- package/src/lib/components/data-input/datetime-input.tsx +27 -13
- package/src/lib/components/data-input/default-relation-input.tsx +18 -12
- package/src/lib/components/data-input/money-input.stories.tsx +88 -0
- package/src/lib/components/data-input/number-input.stories.tsx +103 -0
- package/src/lib/components/data-input/number-input.tsx +10 -4
- package/src/lib/components/data-input/password-input.stories.tsx +65 -0
- package/src/lib/components/data-input/rich-text-input.stories.tsx +92 -0
- package/src/lib/components/data-input/slug-input.stories.tsx +232 -0
- package/src/lib/components/data-input/slug-input.tsx +9 -10
- package/src/lib/components/data-input/text-input.stories.tsx +52 -0
- package/src/lib/components/data-input/textarea-input.stories.tsx +55 -0
- package/src/lib/components/data-table/add-filter-menu.tsx +6 -1
- package/src/lib/components/data-table/column-header-wrapper.tsx +106 -0
- package/src/lib/components/data-table/data-table-bulk-action-item.tsx +11 -9
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +4 -4
- package/src/lib/components/data-table/data-table-column-header.tsx +17 -14
- package/src/lib/components/data-table/data-table-faceted-filter.tsx +33 -11
- package/src/lib/components/data-table/data-table-filter-badge-editable.tsx +35 -0
- package/src/lib/components/data-table/data-table-filter-badge.tsx +23 -16
- package/src/lib/components/data-table/data-table-filter-dialog.tsx +28 -8
- package/src/lib/components/data-table/data-table-pagination.tsx +23 -7
- package/src/lib/components/data-table/data-table.stories.tsx +249 -0
- package/src/lib/components/data-table/data-table.tsx +37 -9
- package/src/lib/components/data-table/filters/data-table-datetime-filter.tsx +79 -34
- package/src/lib/components/data-table/use-generated-columns.tsx +55 -27
- package/src/lib/components/layout/nav-user.tsx +19 -13
- package/src/lib/components/login/login-form.tsx +39 -123
- package/src/lib/components/shared/alerts.tsx +29 -17
- package/src/lib/components/shared/asset/asset-bulk-actions.tsx +3 -3
- package/src/lib/components/shared/asset/asset-gallery.stories.tsx +76 -0
- package/src/lib/components/shared/asset/asset-gallery.tsx +147 -113
- package/src/lib/components/shared/asset/asset-picker-dialog.stories.tsx +58 -0
- package/src/lib/components/shared/customer-group-selector.tsx +5 -2
- package/src/lib/components/shared/detail-page-button.stories.tsx +52 -0
- package/src/lib/components/shared/facet-value-selector.stories.tsx +48 -0
- package/src/lib/components/shared/facet-value-selector.tsx +130 -34
- package/src/lib/components/shared/paginated-list-data-table.stories.tsx +212 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +12 -12
- package/src/lib/components/shared/permission-guard.stories.tsx +46 -0
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +2 -0
- package/src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx +8 -4
- package/src/lib/components/shared/rich-text-editor/rich-text-editor.tsx +1 -0
- package/src/lib/components/shared/table-cell/order-table-cell-components.tsx +40 -0
- package/src/lib/components/shared/vendure-image.stories.tsx +167 -0
- package/src/lib/components/shared/vendure-image.tsx +6 -7
- package/src/lib/components/ui/accordion.stories.tsx +33 -0
- package/src/lib/components/ui/alert-dialog.stories.tsx +48 -0
- package/src/lib/components/ui/alert.stories.tsx +35 -0
- package/src/lib/components/ui/aspect-ratio.stories.tsx +28 -0
- package/src/lib/components/ui/badge.stories.tsx +28 -0
- package/src/lib/components/ui/breadcrumb.stories.tsx +41 -0
- package/src/lib/components/ui/button.stories.tsx +38 -0
- package/src/lib/components/ui/calendar.stories.tsx +22 -0
- package/src/lib/components/ui/card.stories.tsx +28 -0
- package/src/lib/components/ui/carousel.stories.tsx +34 -0
- package/src/lib/components/ui/checkbox.stories.tsx +31 -0
- package/src/lib/components/ui/collapsible.stories.tsx +39 -0
- package/src/lib/components/ui/command.stories.tsx +44 -0
- package/src/lib/components/ui/context-menu.stories.tsx +38 -0
- package/src/lib/components/ui/dialog.stories.tsx +52 -0
- package/src/lib/components/ui/drawer.stories.tsx +50 -0
- package/src/lib/components/ui/dropdown-menu.stories.tsx +41 -0
- package/src/lib/components/ui/hover-card.stories.tsx +38 -0
- package/src/lib/components/ui/input-group.tsx +148 -0
- package/src/lib/components/ui/input-otp.stories.tsx +30 -0
- package/src/lib/components/ui/input.stories.tsx +38 -0
- package/src/lib/components/ui/label.stories.tsx +24 -0
- package/src/lib/components/ui/menubar.stories.tsx +53 -0
- package/src/lib/components/ui/navigation-menu.stories.tsx +54 -0
- package/src/lib/components/ui/pagination.stories.tsx +51 -0
- package/src/lib/components/ui/password-input.stories.tsx +32 -0
- package/src/lib/components/ui/password-input.tsx +33 -0
- package/src/lib/components/ui/popover.stories.tsx +33 -0
- package/src/lib/components/ui/progress.stories.tsx +27 -0
- package/src/lib/components/ui/radio-group.stories.tsx +34 -0
- package/src/lib/components/ui/resizable.stories.tsx +32 -0
- package/src/lib/components/ui/scroll-area.stories.tsx +31 -0
- package/src/lib/components/ui/select.stories.tsx +36 -0
- package/src/lib/components/ui/separator.stories.tsx +35 -0
- package/src/lib/components/ui/sheet.stories.tsx +50 -0
- package/src/lib/components/ui/sidebar-context.ts +16 -0
- package/src/lib/components/ui/sidebar.tsx +2 -13
- package/src/lib/components/ui/skeleton.stories.tsx +26 -0
- package/src/lib/components/ui/slider.stories.tsx +37 -0
- package/src/lib/components/ui/switch.stories.tsx +31 -0
- package/src/lib/components/ui/table.stories.tsx +52 -0
- package/src/lib/components/ui/tabs.stories.tsx +29 -0
- package/src/lib/components/ui/textarea.stories.tsx +32 -0
- package/src/lib/components/ui/toggle-group.stories.tsx +31 -0
- package/src/lib/components/ui/toggle.stories.tsx +39 -0
- package/src/lib/components/ui/tooltip.stories.tsx +30 -0
- package/src/lib/components/ui/tooltip.tsx +2 -2
- package/src/lib/framework/alert/alert-extensions.tsx +0 -11
- package/src/lib/framework/alert/alert-item.tsx +14 -19
- package/src/lib/framework/alert/alerts-indicator.tsx +14 -15
- package/src/lib/framework/alert/search-index-buffer-alert/search-index-buffer-alert.ts +41 -0
- package/src/lib/framework/component-registry/component-registry.tsx +3 -14
- package/src/lib/framework/dashboard-widget/base-widget.tsx +18 -9
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +12 -11
- package/src/lib/framework/defaults.ts +9 -13
- package/src/lib/framework/extension-api/input-component-extensions.tsx +6 -1
- package/src/lib/framework/extension-api/logic/alerts.ts +3 -2
- package/src/lib/framework/extension-api/types/alerts.ts +12 -6
- package/src/lib/framework/extension-api/types/data-table.ts +5 -2
- package/src/lib/framework/extension-api/types/login.ts +0 -21
- package/src/lib/framework/layout-engine/custom-form-page.stories.tsx +344 -0
- package/src/lib/framework/layout-engine/page-layout.tsx +11 -9
- package/src/lib/framework/layout-engine/page.stories.tsx +275 -0
- package/src/lib/framework/nav-menu/nav-menu-extensions.ts +32 -19
- package/src/lib/framework/page/detail-page.stories.tsx +151 -0
- package/src/lib/framework/page/list-page.stories.tsx +217 -0
- package/src/lib/framework/page/list-page.tsx +8 -1
- package/src/lib/graphql/api.ts +18 -1
- package/src/lib/graphql/graphql-env.d.ts +1 -1
- package/src/lib/hooks/use-alerts.ts +84 -0
- package/src/lib/hooks/use-floating-bulk-actions.ts +2 -3
- package/src/lib/index.ts +12 -5
- package/src/lib/providers/alerts-provider.tsx +60 -0
- package/src/lib/providers/theme-provider.tsx +6 -3
package/src/i18n/locales/pl.po
CHANGED
|
@@ -13,18 +13,6 @@ msgstr ""
|
|
|
13
13
|
"Language-Team: \n"
|
|
14
14
|
"Plural-Forms: \n"
|
|
15
15
|
|
|
16
|
-
#. js-lingui-explicit-id
|
|
17
|
-
#: src/lib/hooks/use-extended-detail-query.ts:23
|
|
18
|
-
#: src/lib/hooks/use-extended-list-query.ts:64
|
|
19
|
-
msgid "Query extension error"
|
|
20
|
-
msgstr "Błąd rozszerzenia zapytania"
|
|
21
|
-
|
|
22
|
-
#. js-lingui-explicit-id
|
|
23
|
-
#: src/lib/hooks/use-extended-detail-query.ts:25
|
|
24
|
-
#: src/lib/hooks/use-extended-list-query.ts:66
|
|
25
|
-
msgid "The page will continue with the default query."
|
|
26
|
-
msgstr "Strona będzie kontynuowana z domyślnym zapytaniem."
|
|
27
|
-
|
|
28
16
|
#. js-lingui-explicit-id
|
|
29
17
|
#: src/lib/hooks/use-extended-list-query.ts:41
|
|
30
18
|
msgid "Failed to extend query document"
|
|
@@ -51,171 +39,188 @@ msgid "Query extension error: "
|
|
|
51
39
|
msgstr "Błąd rozszerzenia zapytania: "
|
|
52
40
|
|
|
53
41
|
#. js-lingui-explicit-id
|
|
54
|
-
#: src/lib/
|
|
42
|
+
#: src/lib/hooks/use-extended-detail-query.ts:23
|
|
43
|
+
#: src/lib/hooks/use-extended-list-query.ts:64
|
|
44
|
+
msgid "Query extension error"
|
|
45
|
+
msgstr "Błąd rozszerzenia zapytania"
|
|
46
|
+
|
|
47
|
+
#. js-lingui-explicit-id
|
|
48
|
+
#: src/lib/hooks/use-extended-detail-query.ts:25
|
|
49
|
+
#: src/lib/hooks/use-extended-list-query.ts:66
|
|
50
|
+
msgid "The page will continue with the default query."
|
|
51
|
+
msgstr "Strona będzie kontynuowana z domyślnym zapytaniem."
|
|
52
|
+
|
|
53
|
+
#. js-lingui-explicit-id
|
|
54
|
+
#: src/lib/framework/defaults.ts:24
|
|
55
55
|
msgid "Insights"
|
|
56
56
|
msgstr "Statystyki"
|
|
57
57
|
|
|
58
58
|
#. js-lingui-explicit-id
|
|
59
|
-
#: src/lib/framework/defaults.ts:
|
|
59
|
+
#: src/lib/framework/defaults.ts:32
|
|
60
60
|
msgid "Catalog"
|
|
61
61
|
msgstr "Katalog"
|
|
62
62
|
|
|
63
63
|
#. js-lingui-explicit-id
|
|
64
|
-
#: src/lib/framework/defaults.ts:
|
|
64
|
+
#: src/lib/framework/defaults.ts:39
|
|
65
65
|
msgid "Products"
|
|
66
66
|
msgstr "Produkty"
|
|
67
67
|
|
|
68
68
|
#. js-lingui-explicit-id
|
|
69
|
-
#: src/lib/framework/defaults.ts:
|
|
69
|
+
#: src/lib/framework/defaults.ts:46
|
|
70
70
|
msgid "Product Variants"
|
|
71
71
|
msgstr "Warianty produktów"
|
|
72
72
|
|
|
73
73
|
#. js-lingui-explicit-id
|
|
74
|
-
#: src/lib/framework/defaults.ts:
|
|
74
|
+
#: src/lib/framework/defaults.ts:53
|
|
75
75
|
msgid "Facets"
|
|
76
76
|
msgstr "Aspekty"
|
|
77
77
|
|
|
78
78
|
#. js-lingui-explicit-id
|
|
79
|
-
#: src/lib/framework/defaults.ts:
|
|
79
|
+
#: src/lib/framework/defaults.ts:60
|
|
80
80
|
msgid "Collections"
|
|
81
81
|
msgstr "Kolekcje"
|
|
82
82
|
|
|
83
83
|
#. js-lingui-explicit-id
|
|
84
|
-
#: src/lib/framework/defaults.ts:
|
|
84
|
+
#: src/lib/framework/defaults.ts:67
|
|
85
85
|
msgid "Assets"
|
|
86
86
|
msgstr "Zasoby"
|
|
87
87
|
|
|
88
88
|
#. js-lingui-explicit-id
|
|
89
|
-
#: src/lib/framework/defaults.ts:
|
|
89
|
+
#: src/lib/framework/defaults.ts:76
|
|
90
90
|
msgid "Sales"
|
|
91
91
|
msgstr "Sprzedaż"
|
|
92
92
|
|
|
93
93
|
#. js-lingui-explicit-id
|
|
94
|
-
#: src/lib/framework/defaults.ts:
|
|
94
|
+
#: src/lib/framework/defaults.ts:83
|
|
95
95
|
msgid "Orders"
|
|
96
96
|
msgstr "Zamówienia"
|
|
97
97
|
|
|
98
98
|
#. js-lingui-explicit-id
|
|
99
|
-
#: src/lib/framework/defaults.ts:
|
|
100
|
-
#: src/lib/framework/defaults.ts:
|
|
99
|
+
#: src/lib/framework/defaults.ts:92
|
|
100
|
+
#: src/lib/framework/defaults.ts:99
|
|
101
101
|
msgid "Customers"
|
|
102
102
|
msgstr "Klienci"
|
|
103
103
|
|
|
104
104
|
#. js-lingui-explicit-id
|
|
105
|
-
#: src/lib/framework/defaults.ts:
|
|
105
|
+
#: src/lib/framework/defaults.ts:106
|
|
106
106
|
msgid "Customer Groups"
|
|
107
107
|
msgstr "Grupy klientów"
|
|
108
108
|
|
|
109
109
|
#. js-lingui-explicit-id
|
|
110
|
-
#: src/lib/framework/defaults.ts:
|
|
110
|
+
#: src/lib/framework/defaults.ts:115
|
|
111
111
|
msgid "Marketing"
|
|
112
112
|
msgstr "Marketing"
|
|
113
113
|
|
|
114
114
|
#. js-lingui-explicit-id
|
|
115
|
-
#: src/lib/framework/defaults.ts:
|
|
115
|
+
#: src/lib/framework/defaults.ts:122
|
|
116
116
|
msgid "Promotions"
|
|
117
117
|
msgstr "Promocje"
|
|
118
118
|
|
|
119
119
|
#. js-lingui-explicit-id
|
|
120
|
-
#: src/lib/framework/defaults.ts:
|
|
120
|
+
#: src/lib/framework/defaults.ts:131
|
|
121
121
|
msgid "System"
|
|
122
122
|
msgstr "System"
|
|
123
123
|
|
|
124
124
|
#. js-lingui-explicit-id
|
|
125
|
-
#: src/lib/framework/defaults.ts:
|
|
125
|
+
#: src/lib/framework/defaults.ts:138
|
|
126
126
|
msgid "Job Queue"
|
|
127
127
|
msgstr "Kolejka zadań"
|
|
128
128
|
|
|
129
129
|
#. js-lingui-explicit-id
|
|
130
|
-
#: src/lib/framework/defaults.ts:
|
|
130
|
+
#: src/lib/framework/defaults.ts:145
|
|
131
131
|
msgid "Healthchecks"
|
|
132
132
|
msgstr "Kontrole stanu"
|
|
133
133
|
|
|
134
134
|
#. js-lingui-explicit-id
|
|
135
|
-
#: src/lib/framework/defaults.ts:
|
|
135
|
+
#: src/lib/framework/defaults.ts:152
|
|
136
136
|
msgid "Scheduled Tasks"
|
|
137
137
|
msgstr "Zadania zaplanowane"
|
|
138
138
|
|
|
139
139
|
#. js-lingui-explicit-id
|
|
140
|
-
#: src/lib/framework/defaults.ts:
|
|
140
|
+
#: src/lib/framework/defaults.ts:161
|
|
141
141
|
msgid "Settings"
|
|
142
142
|
msgstr "Ustawienia"
|
|
143
143
|
|
|
144
144
|
#. js-lingui-explicit-id
|
|
145
|
-
#: src/lib/framework/defaults.ts:
|
|
145
|
+
#: src/lib/framework/defaults.ts:168
|
|
146
146
|
msgid "Sellers"
|
|
147
147
|
msgstr "Sprzedawcy"
|
|
148
148
|
|
|
149
149
|
#. js-lingui-explicit-id
|
|
150
|
-
#: src/lib/framework/defaults.ts:
|
|
150
|
+
#: src/lib/framework/defaults.ts:175
|
|
151
151
|
msgid "Channels"
|
|
152
152
|
msgstr "Kanały"
|
|
153
153
|
|
|
154
154
|
#. js-lingui-explicit-id
|
|
155
|
-
#: src/lib/framework/defaults.ts:
|
|
155
|
+
#: src/lib/framework/defaults.ts:182
|
|
156
156
|
msgid "Stock Locations"
|
|
157
157
|
msgstr "Lokalizacje magazynowe"
|
|
158
158
|
|
|
159
159
|
#. js-lingui-explicit-id
|
|
160
|
-
#: src/lib/framework/defaults.ts:
|
|
160
|
+
#: src/lib/framework/defaults.ts:189
|
|
161
161
|
msgid "Administrators"
|
|
162
162
|
msgstr "Administratorzy"
|
|
163
163
|
|
|
164
164
|
#. js-lingui-explicit-id
|
|
165
|
-
#: src/lib/framework/defaults.ts:
|
|
165
|
+
#: src/lib/framework/defaults.ts:196
|
|
166
166
|
msgid "Roles"
|
|
167
167
|
msgstr "Role"
|
|
168
168
|
|
|
169
169
|
#. js-lingui-explicit-id
|
|
170
|
-
#: src/lib/framework/defaults.ts:
|
|
170
|
+
#: src/lib/framework/defaults.ts:203
|
|
171
171
|
msgid "Shipping Methods"
|
|
172
172
|
msgstr "Metody wysyłki"
|
|
173
173
|
|
|
174
174
|
#. js-lingui-explicit-id
|
|
175
|
-
#: src/lib/framework/defaults.ts:
|
|
175
|
+
#: src/lib/framework/defaults.ts:210
|
|
176
176
|
msgid "Payment Methods"
|
|
177
177
|
msgstr "Metody płatności"
|
|
178
178
|
|
|
179
179
|
#. js-lingui-explicit-id
|
|
180
|
-
#: src/lib/framework/defaults.ts:
|
|
180
|
+
#: src/lib/framework/defaults.ts:217
|
|
181
181
|
msgid "Tax Categories"
|
|
182
182
|
msgstr "Kategorie podatkowe"
|
|
183
183
|
|
|
184
184
|
#. js-lingui-explicit-id
|
|
185
|
-
#: src/lib/framework/defaults.ts:
|
|
185
|
+
#: src/lib/framework/defaults.ts:224
|
|
186
186
|
msgid "Tax Rates"
|
|
187
187
|
msgstr "Stawki podatkowe"
|
|
188
188
|
|
|
189
189
|
#. js-lingui-explicit-id
|
|
190
|
-
#: src/lib/framework/defaults.ts:
|
|
190
|
+
#: src/lib/framework/defaults.ts:231
|
|
191
191
|
msgid "Countries"
|
|
192
192
|
msgstr "Kraje"
|
|
193
193
|
|
|
194
194
|
#. js-lingui-explicit-id
|
|
195
|
-
#: src/lib/framework/defaults.ts:
|
|
195
|
+
#: src/lib/framework/defaults.ts:238
|
|
196
196
|
msgid "Zones"
|
|
197
197
|
msgstr "Strefy"
|
|
198
198
|
|
|
199
199
|
#. js-lingui-explicit-id
|
|
200
|
-
#: src/lib/framework/defaults.ts:
|
|
200
|
+
#: src/lib/framework/defaults.ts:245
|
|
201
201
|
msgid "Global Settings"
|
|
202
202
|
msgstr "Ustawienia globalne"
|
|
203
203
|
|
|
204
204
|
#. js-lingui-explicit-id
|
|
205
|
-
#: src/lib/framework/defaults.ts:
|
|
205
|
+
#: src/lib/framework/defaults.ts:257
|
|
206
206
|
msgid "Metrics Widget"
|
|
207
207
|
msgstr "Widget metryk"
|
|
208
208
|
|
|
209
209
|
#. js-lingui-explicit-id
|
|
210
|
-
#: src/lib/framework/defaults.ts:
|
|
210
|
+
#: src/lib/framework/defaults.ts:265
|
|
211
211
|
msgid "Latest Orders Widget"
|
|
212
212
|
msgstr "Widget najnowszych zamówień"
|
|
213
213
|
|
|
214
214
|
#. js-lingui-explicit-id
|
|
215
|
-
#: src/lib/framework/defaults.ts:
|
|
215
|
+
#: src/lib/framework/defaults.ts:272
|
|
216
216
|
msgid "Orders Summary Widget"
|
|
217
217
|
msgstr "Widget podsumowania zamówień"
|
|
218
218
|
|
|
219
|
+
#. js-lingui-explicit-id
|
|
220
|
+
#: src/lib/framework/alert/search-index-buffer-alert/search-index-buffer-alert.tsx:35
|
|
221
|
+
msgid "Running pending search index updates"
|
|
222
|
+
msgstr "Uruchamianie oczekujących aktualizacji indeksu wyszukiwania"
|
|
223
|
+
|
|
219
224
|
#. js-lingui-explicit-id
|
|
220
225
|
#: src/i18n/common-strings.ts:7
|
|
221
226
|
msgid "fulfillmentState.Created"
|
|
@@ -730,12 +735,12 @@ msgstr "!="
|
|
|
730
735
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:102
|
|
731
736
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:37
|
|
732
737
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:44
|
|
733
|
-
#: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:
|
|
738
|
+
#: src/app/routes/_authenticated/_orders/components/state-transition-control.tsx:90
|
|
734
739
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:189
|
|
735
740
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories.tsx:45
|
|
736
741
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:278
|
|
737
742
|
#: src/lib/components/data-input/relation-selector.tsx:403
|
|
738
|
-
#: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:
|
|
743
|
+
#: src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx:425
|
|
739
744
|
msgid "{0}"
|
|
740
745
|
msgstr "{0}"
|
|
741
746
|
|
|
@@ -762,7 +767,7 @@ msgid "{0} selected"
|
|
|
762
767
|
msgstr "{0} wybranych"
|
|
763
768
|
|
|
764
769
|
#. placeholder {0}: row.original.productVariants?.totalItems
|
|
765
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
770
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:154
|
|
766
771
|
msgid "{0} variants"
|
|
767
772
|
msgstr "{0} wariantów"
|
|
768
773
|
|
|
@@ -790,10 +795,14 @@ msgstr "{title}"
|
|
|
790
795
|
msgid "+ {0} more"
|
|
791
796
|
msgstr "+ {0} więcej"
|
|
792
797
|
|
|
793
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
798
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:172
|
|
794
799
|
msgid "+ {leftOver} more"
|
|
795
800
|
msgstr "+ {leftOver} więcej"
|
|
796
801
|
|
|
802
|
+
#: src/lib/components/login/login-form.tsx:111
|
|
803
|
+
#~ msgid "<0>Forgot password?</0><1>Request reset</1>"
|
|
804
|
+
#~ msgstr "<0>Zapomniałeś hasła?</0><1>Poproś o reset</1>"
|
|
805
|
+
|
|
797
806
|
#: src/lib/components/data-table/human-readable-operator.tsx:24
|
|
798
807
|
msgid "="
|
|
799
808
|
msgstr "="
|
|
@@ -802,9 +811,9 @@ msgstr "="
|
|
|
802
811
|
msgid "A refund of {formattedDiff} is required. Select payment amounts and enter a note to proceed."
|
|
803
812
|
msgstr "Wymagany jest zwrot w wysokości {formattedDiff}. Wybierz kwoty płatności i wprowadź notatkę, aby kontynuować."
|
|
804
813
|
|
|
805
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
814
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:233
|
|
806
815
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:191
|
|
807
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
816
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:234
|
|
808
817
|
msgid "Actions"
|
|
809
818
|
msgstr "Działania"
|
|
810
819
|
|
|
@@ -826,6 +835,10 @@ msgstr "Dodaj ręczną płatność {0}"
|
|
|
826
835
|
msgid "Add a new address to the customer."
|
|
827
836
|
msgstr "Dodaj nowy adres do klienta."
|
|
828
837
|
|
|
838
|
+
#: src/app/routes/_authenticated/_product-variants/components/add-currency-dropdown.tsx:36
|
|
839
|
+
msgid "Add a price in another currency"
|
|
840
|
+
msgstr "Dodaj cenę w innej walucie"
|
|
841
|
+
|
|
829
842
|
#: src/app/routes/_authenticated/_products/components/create-product-options-dialog.tsx:318
|
|
830
843
|
msgid "Add another option group"
|
|
831
844
|
msgstr "Dodaj kolejną grupę opcji"
|
|
@@ -846,7 +859,7 @@ msgstr "Dodaj kolumnę przed"
|
|
|
846
859
|
msgid "Add Country"
|
|
847
860
|
msgstr "Dodaj kraj"
|
|
848
861
|
|
|
849
|
-
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:
|
|
862
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:269
|
|
850
863
|
msgid "Add coupon code"
|
|
851
864
|
msgstr "Dodaj kod kuponu"
|
|
852
865
|
|
|
@@ -863,7 +876,7 @@ msgstr "Dodaj grupy klientów"
|
|
|
863
876
|
msgid "Add facet value"
|
|
864
877
|
msgstr "Dodaj wartość aspektu"
|
|
865
878
|
|
|
866
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
879
|
+
#: src/lib/components/shared/facet-value-selector.tsx:298
|
|
867
880
|
msgid "Add facet values"
|
|
868
881
|
msgstr "Dodaj wartości aspektów"
|
|
869
882
|
|
|
@@ -935,7 +948,7 @@ msgstr "Najpierw dodaj opcje produktu"
|
|
|
935
948
|
msgid "Add product variant"
|
|
936
949
|
msgstr "Dodaj wariant produktu"
|
|
937
950
|
|
|
938
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
951
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:232
|
|
939
952
|
msgid "Add products to create a test order"
|
|
940
953
|
msgstr "Dodaj produkty, aby utworzyć zamówienie testowe"
|
|
941
954
|
|
|
@@ -947,6 +960,10 @@ msgstr "Dodaj wiersz po"
|
|
|
947
960
|
msgid "Add row before"
|
|
948
961
|
msgstr "Dodaj wiersz przed"
|
|
949
962
|
|
|
963
|
+
#: src/app/routes/_authenticated/_product-variants/components/add-stock-location-dropdown.tsx:41
|
|
964
|
+
msgid "Add stock level for another location"
|
|
965
|
+
msgstr "Dodaj poziom zapasów dla innej lokalizacji"
|
|
966
|
+
|
|
950
967
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:179
|
|
951
968
|
msgid "Add Stock to Location"
|
|
952
969
|
msgstr "Dodaj stan magazynowy do lokalizacji"
|
|
@@ -960,7 +977,7 @@ msgstr "Dodaj tagi..."
|
|
|
960
977
|
msgid "Add variant"
|
|
961
978
|
msgstr "Dodaj wariant"
|
|
962
979
|
|
|
963
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
980
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:188
|
|
964
981
|
msgid "Added coupon codes"
|
|
965
982
|
msgstr "Dodano kody kuponów"
|
|
966
983
|
|
|
@@ -969,7 +986,7 @@ msgid "Added to group"
|
|
|
969
986
|
msgstr "Dodano do grupy"
|
|
970
987
|
|
|
971
988
|
#. placeholder {0}: addedLines.length
|
|
972
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
989
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:162
|
|
973
990
|
msgid "Adding {0} item(s)"
|
|
974
991
|
msgstr "Dodawanie {0} pozycji"
|
|
975
992
|
|
|
@@ -1005,12 +1022,12 @@ msgid "Address updated successfully"
|
|
|
1005
1022
|
msgstr "Adres zaktualizowany pomyślnie"
|
|
1006
1023
|
|
|
1007
1024
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:200
|
|
1008
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1025
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:231
|
|
1009
1026
|
msgid "Addresses"
|
|
1010
1027
|
msgstr "Adresy"
|
|
1011
1028
|
|
|
1012
1029
|
#. placeholder {0}: adjustedLines.length
|
|
1013
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1030
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:131
|
|
1014
1031
|
msgid "Adjusting {0} lines"
|
|
1015
1032
|
msgstr "Dostosowywanie {0} wierszy"
|
|
1016
1033
|
|
|
@@ -1028,7 +1045,7 @@ msgstr "po"
|
|
|
1028
1045
|
msgid "All resources are up and running"
|
|
1029
1046
|
msgstr "Wszystkie zasoby są aktywne"
|
|
1030
1047
|
|
|
1031
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1048
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:410
|
|
1032
1049
|
msgid "Allocated"
|
|
1033
1050
|
msgstr "Przydzielono"
|
|
1034
1051
|
|
|
@@ -1061,7 +1078,7 @@ msgstr "Zastosowano widok „{viewName}\""
|
|
|
1061
1078
|
msgid "Apply"
|
|
1062
1079
|
msgstr "Zastosuj"
|
|
1063
1080
|
|
|
1064
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
1081
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:86
|
|
1065
1082
|
msgid "Apply filter"
|
|
1066
1083
|
msgstr "Zastosuj filtr"
|
|
1067
1084
|
|
|
@@ -1082,7 +1099,7 @@ msgstr "Czy na pewno chcesz usunąć {selectionLength} zasobów?"
|
|
|
1082
1099
|
msgid "Are you sure you want to delete this address?"
|
|
1083
1100
|
msgstr "Czy na pewno chcesz usunąć ten adres?"
|
|
1084
1101
|
|
|
1085
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1102
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:302
|
|
1086
1103
|
msgid "Are you sure you want to delete this draft order?"
|
|
1087
1104
|
msgstr "Czy na pewno chcesz usunąć ten projekt zamówienia?"
|
|
1088
1105
|
|
|
@@ -1090,7 +1107,7 @@ msgstr "Czy na pewno chcesz usunąć ten projekt zamówienia?"
|
|
|
1090
1107
|
msgid "Are you sure you want to delete this global view? This action cannot be undone and will affect all users."
|
|
1091
1108
|
msgstr "Czy na pewno chcesz usunąć ten widok globalny? Ta akcja nie może być cofnięta i wpłynie na wszystkich użytkowników."
|
|
1092
1109
|
|
|
1093
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1110
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:325
|
|
1094
1111
|
msgid "Are you sure you want to delete this item? This action cannot be undone."
|
|
1095
1112
|
msgstr "Czy na pewno chcesz usunąć tę pozycję? Ta akcja nie może być cofnięta."
|
|
1096
1113
|
|
|
@@ -1115,7 +1132,7 @@ msgstr "Czy na pewno chcesz usunąć {0} {entityType} z bieżącego kanału?"
|
|
|
1115
1132
|
#: src/app/routes/_authenticated/_assets/assets.tsx:9
|
|
1116
1133
|
#: src/app/routes/_authenticated/_assets/assets.tsx:16
|
|
1117
1134
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:198
|
|
1118
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1135
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:438
|
|
1119
1136
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:208
|
|
1120
1137
|
msgid "Assets"
|
|
1121
1138
|
msgstr "Zasoby"
|
|
@@ -1146,7 +1163,7 @@ msgid "Available currencies"
|
|
|
1146
1163
|
msgstr "Dostępne waluty"
|
|
1147
1164
|
|
|
1148
1165
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:164
|
|
1149
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
1166
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:112
|
|
1150
1167
|
msgid "Available languages"
|
|
1151
1168
|
msgstr "Dostępne języki"
|
|
1152
1169
|
|
|
@@ -1162,7 +1179,7 @@ msgstr "Dostępne:"
|
|
|
1162
1179
|
msgid "Average Order Value"
|
|
1163
1180
|
msgstr "Średnia wartość zamówienia"
|
|
1164
1181
|
|
|
1165
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
1182
|
+
#: src/lib/components/shared/facet-value-selector.tsx:370
|
|
1166
1183
|
msgid "Back to search"
|
|
1167
1184
|
msgstr "Wróć do wyszukiwania"
|
|
1168
1185
|
|
|
@@ -1175,25 +1192,30 @@ msgid "between"
|
|
|
1175
1192
|
msgstr "pomiędzy"
|
|
1176
1193
|
|
|
1177
1194
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:267
|
|
1178
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1179
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1195
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:260
|
|
1196
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:450
|
|
1180
1197
|
msgid "Billing address"
|
|
1181
1198
|
msgstr "Adres rozliczeniowy"
|
|
1182
1199
|
|
|
1183
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1200
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:117
|
|
1184
1201
|
msgid "Billing address changed"
|
|
1185
1202
|
msgstr "Zmieniono adres rozliczeniowy"
|
|
1186
1203
|
|
|
1187
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1204
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:189
|
|
1188
1205
|
msgid "Billing address set for order"
|
|
1189
1206
|
msgstr "Adres rozliczeniowy ustawiony dla zamówienia"
|
|
1190
1207
|
|
|
1191
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1208
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:205
|
|
1192
1209
|
msgid "Billing address unset for order"
|
|
1193
1210
|
msgstr "Adres rozliczeniowy usunięty z zamówienia"
|
|
1194
1211
|
|
|
1212
|
+
#: src/lib/components/shared/facet-value-selector.tsx:336
|
|
1213
|
+
#: src/lib/components/shared/facet-value-selector.tsx:353
|
|
1214
|
+
msgid "Browse facets"
|
|
1215
|
+
msgstr "Przeglądaj fasety"
|
|
1216
|
+
|
|
1195
1217
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:185
|
|
1196
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1218
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:179
|
|
1197
1219
|
msgid "Calculator"
|
|
1198
1220
|
msgstr "Kalkulator"
|
|
1199
1221
|
|
|
@@ -1208,7 +1230,7 @@ msgstr "Kalkulator"
|
|
|
1208
1230
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:270
|
|
1209
1231
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:364
|
|
1210
1232
|
#: src/lib/components/data-table/data-table-bulk-action-item.tsx:119
|
|
1211
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1233
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:332
|
|
1212
1234
|
#: src/lib/components/data-table/views-sheet.tsx:217
|
|
1213
1235
|
#: src/lib/components/data-table/views-sheet.tsx:295
|
|
1214
1236
|
#: src/lib/components/layout/manage-languages-dialog.tsx:396
|
|
@@ -1226,7 +1248,7 @@ msgstr "Anuluj"
|
|
|
1226
1248
|
msgid "Cancel Job"
|
|
1227
1249
|
msgstr "Anuluj zadanie"
|
|
1228
1250
|
|
|
1229
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1251
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:164
|
|
1230
1252
|
msgid "Cancel modification"
|
|
1231
1253
|
msgstr "Anuluj modyfikację"
|
|
1232
1254
|
|
|
@@ -1259,7 +1281,7 @@ msgid "Channels"
|
|
|
1259
1281
|
msgstr "Kanały"
|
|
1260
1282
|
|
|
1261
1283
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:184
|
|
1262
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1284
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:196
|
|
1263
1285
|
#: src/lib/components/shared/customer-address-form.tsx:175
|
|
1264
1286
|
msgid "City"
|
|
1265
1287
|
msgstr "Miasto"
|
|
@@ -1269,11 +1291,11 @@ msgid "Clear"
|
|
|
1269
1291
|
msgstr "Wyczyść"
|
|
1270
1292
|
|
|
1271
1293
|
#: src/app/routes/_authenticated/_assets/components/asset-tag-filter.tsx:180
|
|
1272
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
1294
|
+
#: src/lib/components/data-table/data-table.tsx:305
|
|
1273
1295
|
msgid "Clear all"
|
|
1274
1296
|
msgstr "Wyczyść wszystko"
|
|
1275
1297
|
|
|
1276
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
1298
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:74
|
|
1277
1299
|
msgid "Clear filter"
|
|
1278
1300
|
msgstr "Wyczyść filtr"
|
|
1279
1301
|
|
|
@@ -1292,10 +1314,10 @@ msgstr "Kliknij „Uruchom test\", aby przetestować tę metodę wysyłki."
|
|
|
1292
1314
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:130
|
|
1293
1315
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:157
|
|
1294
1316
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:155
|
|
1295
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
1317
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:187
|
|
1296
1318
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:104
|
|
1297
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1298
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
1319
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:143
|
|
1320
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:78
|
|
1299
1321
|
msgid "Code"
|
|
1300
1322
|
msgstr "Kod"
|
|
1301
1323
|
|
|
@@ -1304,8 +1326,8 @@ msgid "Collection contents for {collectionName}"
|
|
|
1304
1326
|
msgstr "Zawartość kolekcji {collectionName}"
|
|
1305
1327
|
|
|
1306
1328
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:45
|
|
1307
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1308
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1329
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:30
|
|
1330
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:86
|
|
1309
1331
|
msgid "Collections"
|
|
1310
1332
|
msgstr "Kolekcje"
|
|
1311
1333
|
|
|
@@ -1318,17 +1340,17 @@ msgid "Column settings"
|
|
|
1318
1340
|
msgstr "Ustawienia kolumn"
|
|
1319
1341
|
|
|
1320
1342
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:125
|
|
1321
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1343
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:165
|
|
1322
1344
|
#: src/lib/components/shared/customer-address-form.tsx:116
|
|
1323
1345
|
msgid "Company"
|
|
1324
1346
|
msgstr "Firma"
|
|
1325
1347
|
|
|
1326
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1348
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:323
|
|
1327
1349
|
msgid "Complete draft"
|
|
1328
1350
|
msgstr "Ukończ wersję roboczą"
|
|
1329
1351
|
|
|
1330
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1331
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1352
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:221
|
|
1353
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:167
|
|
1332
1354
|
msgid "Conditions"
|
|
1333
1355
|
msgstr "Warunki"
|
|
1334
1356
|
|
|
@@ -1345,7 +1367,7 @@ msgstr "Potwierdź"
|
|
|
1345
1367
|
msgid "Confirm Action"
|
|
1346
1368
|
msgstr "Potwierdź akcję"
|
|
1347
1369
|
|
|
1348
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1370
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:322
|
|
1349
1371
|
msgid "Confirm deletion"
|
|
1350
1372
|
msgstr "Potwierdź usunięcie"
|
|
1351
1373
|
|
|
@@ -1358,7 +1380,7 @@ msgid "contains"
|
|
|
1358
1380
|
msgstr "zawiera"
|
|
1359
1381
|
|
|
1360
1382
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:222
|
|
1361
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
1383
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:147
|
|
1362
1384
|
msgid "Contents"
|
|
1363
1385
|
msgstr "Zawartość"
|
|
1364
1386
|
|
|
@@ -1379,24 +1401,24 @@ msgid "Countries"
|
|
|
1379
1401
|
msgstr "Kraje"
|
|
1380
1402
|
|
|
1381
1403
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:239
|
|
1382
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
1404
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:217
|
|
1383
1405
|
#: src/lib/components/shared/customer-address-form.tsx:230
|
|
1384
1406
|
msgid "Country"
|
|
1385
1407
|
msgstr "Kraj"
|
|
1386
1408
|
|
|
1387
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1409
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:199
|
|
1388
1410
|
msgid "Coupon code"
|
|
1389
1411
|
msgstr "Kod kuponu"
|
|
1390
1412
|
|
|
1391
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1413
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:245
|
|
1392
1414
|
msgid "Coupon code removed from order"
|
|
1393
1415
|
msgstr "Kod kuponu usunięty z zamówienia"
|
|
1394
1416
|
|
|
1395
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1417
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:232
|
|
1396
1418
|
msgid "Coupon code set for order"
|
|
1397
1419
|
msgstr "Kod kuponu ustawiony dla zamówienia"
|
|
1398
1420
|
|
|
1399
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
1421
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
1400
1422
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
1401
1423
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
|
|
1402
1424
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:87
|
|
@@ -1405,15 +1427,15 @@ msgstr "Kod kuponu ustawiony dla zamówienia"
|
|
|
1405
1427
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
|
|
1406
1428
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
1407
1429
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
|
|
1408
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1430
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:215
|
|
1409
1431
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:197
|
|
1410
1432
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:111
|
|
1411
1433
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
1412
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
1413
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1434
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
1435
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:136
|
|
1414
1436
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
1415
1437
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
1416
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1438
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:126
|
|
1417
1439
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
1418
1440
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
|
|
1419
1441
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
@@ -1453,7 +1475,7 @@ msgid "Create variants for your product"
|
|
|
1453
1475
|
msgstr "Utwórz warianty swojego produktu"
|
|
1454
1476
|
|
|
1455
1477
|
#: src/app/routes/_authenticated/_orders/components/fulfillment-details.tsx:114
|
|
1456
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
1478
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:404
|
|
1457
1479
|
msgid "Created"
|
|
1458
1480
|
msgstr "Utworzono"
|
|
1459
1481
|
|
|
@@ -1479,7 +1501,7 @@ msgstr "Bieżące wartości aspektów"
|
|
|
1479
1501
|
msgid "Current status"
|
|
1480
1502
|
msgstr "Bieżący status"
|
|
1481
1503
|
|
|
1482
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1504
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:377
|
|
1483
1505
|
msgid "Custom fields"
|
|
1484
1506
|
msgstr "Pola niestandardowe"
|
|
1485
1507
|
|
|
@@ -1487,13 +1509,13 @@ msgstr "Pola niestandardowe"
|
|
|
1487
1509
|
msgid "Custom Fields"
|
|
1488
1510
|
msgstr "Pola niestandardowe"
|
|
1489
1511
|
|
|
1490
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
1512
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:151
|
|
1491
1513
|
msgid "Custom fields changed"
|
|
1492
1514
|
msgstr "Zmieniono pola niestandardowe"
|
|
1493
1515
|
|
|
1494
1516
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:242
|
|
1495
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1496
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1517
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:217
|
|
1518
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:403
|
|
1497
1519
|
#: src/lib/components/shared/role-code-label.tsx:8
|
|
1498
1520
|
msgid "Customer"
|
|
1499
1521
|
msgstr "Klient"
|
|
@@ -1537,7 +1559,7 @@ msgstr "Nie znaleziono klienta"
|
|
|
1537
1559
|
msgid "Customer registered"
|
|
1538
1560
|
msgstr "Zarejestrowano klienta"
|
|
1539
1561
|
|
|
1540
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1562
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:159
|
|
1541
1563
|
msgid "Customer set for order"
|
|
1542
1564
|
msgstr "Ustawiono klienta dla zamówienia"
|
|
1543
1565
|
|
|
@@ -1556,7 +1578,7 @@ msgstr "Zweryfikowano klienta"
|
|
|
1556
1578
|
msgid "Customers"
|
|
1557
1579
|
msgstr "Klienci"
|
|
1558
1580
|
|
|
1559
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1581
|
+
#: src/lib/components/layout/nav-user.tsx:135
|
|
1560
1582
|
msgctxt "theme"
|
|
1561
1583
|
msgid "Dark"
|
|
1562
1584
|
msgstr "Ciemny"
|
|
@@ -1598,8 +1620,8 @@ msgstr "Domyślna strefa podatkowa"
|
|
|
1598
1620
|
#: src/app/common/delete-bulk-action.tsx:139
|
|
1599
1621
|
#: src/app/routes/_authenticated/_assets/components/asset-bulk-actions.tsx:41
|
|
1600
1622
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:312
|
|
1601
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1602
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1623
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:315
|
|
1624
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:346
|
|
1603
1625
|
#: src/lib/components/data-table/views-sheet.tsx:272
|
|
1604
1626
|
#: src/lib/components/data-table/views-sheet.tsx:298
|
|
1605
1627
|
msgid "Delete"
|
|
@@ -1613,11 +1635,11 @@ msgstr "Usuń adres"
|
|
|
1613
1635
|
msgid "Delete column"
|
|
1614
1636
|
msgstr "Usuń kolumnę"
|
|
1615
1637
|
|
|
1616
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1638
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:308
|
|
1617
1639
|
msgid "Delete draft"
|
|
1618
1640
|
msgstr "Usuń wersję roboczą"
|
|
1619
1641
|
|
|
1620
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1642
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:301
|
|
1621
1643
|
msgid "Delete draft order"
|
|
1622
1644
|
msgstr "Usuń zamówienie robocze"
|
|
1623
1645
|
|
|
@@ -1641,7 +1663,7 @@ msgstr "Usunięto {deleted} {entityName}"
|
|
|
1641
1663
|
msgid "Deleted {selectionLength} assets"
|
|
1642
1664
|
msgstr "Usunięto {selectionLength} zasobów"
|
|
1643
1665
|
|
|
1644
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
1666
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:296
|
|
1645
1667
|
msgid "Deleted successfully"
|
|
1646
1668
|
msgstr "Pomyślnie usunięto"
|
|
1647
1669
|
|
|
@@ -1649,9 +1671,9 @@ msgstr "Pomyślnie usunięto"
|
|
|
1649
1671
|
#: src/app/routes/_authenticated/_orders/components/order-tax-summary.tsx:14
|
|
1650
1672
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:164
|
|
1651
1673
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:155
|
|
1652
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1674
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:167
|
|
1653
1675
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:98
|
|
1654
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
1676
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:151
|
|
1655
1677
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:118
|
|
1656
1678
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:110
|
|
1657
1679
|
msgid "Description"
|
|
@@ -1662,7 +1684,7 @@ msgid "Description (alt)"
|
|
|
1662
1684
|
msgstr "Opis (tekst alternatywny)"
|
|
1663
1685
|
|
|
1664
1686
|
#: src/lib/components/layout/dev-mode-indicator.tsx:12
|
|
1665
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1687
|
+
#: src/lib/components/layout/nav-user.tsx:149
|
|
1666
1688
|
msgid "Dev Mode"
|
|
1667
1689
|
msgstr "Tryb programisty"
|
|
1668
1690
|
|
|
@@ -1672,11 +1694,11 @@ msgstr "Wyłącz"
|
|
|
1672
1694
|
|
|
1673
1695
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:121
|
|
1674
1696
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:50
|
|
1675
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1697
|
+
#: src/lib/components/layout/nav-user.tsx:161
|
|
1676
1698
|
msgid "Disabled"
|
|
1677
1699
|
msgstr "Wyłączono"
|
|
1678
1700
|
|
|
1679
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
1701
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:35
|
|
1680
1702
|
msgid "Discount"
|
|
1681
1703
|
msgstr "Rabat"
|
|
1682
1704
|
|
|
@@ -1684,7 +1706,7 @@ msgstr "Rabat"
|
|
|
1684
1706
|
msgid "Display language"
|
|
1685
1707
|
msgstr "Język wyświetlania"
|
|
1686
1708
|
|
|
1687
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1709
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:343
|
|
1688
1710
|
msgid "Do not track"
|
|
1689
1711
|
msgstr "Nie śledź"
|
|
1690
1712
|
|
|
@@ -1692,16 +1714,16 @@ msgstr "Nie śledź"
|
|
|
1692
1714
|
msgid "does not contain"
|
|
1693
1715
|
msgstr "nie zawiera"
|
|
1694
1716
|
|
|
1695
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1717
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:295
|
|
1696
1718
|
#: src/app/routes/_authenticated/_orders/orders.tsx:113
|
|
1697
1719
|
msgid "Draft order"
|
|
1698
1720
|
msgstr "Zamówienie robocze"
|
|
1699
1721
|
|
|
1700
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1722
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:256
|
|
1701
1723
|
msgid "Draft order completed"
|
|
1702
1724
|
msgstr "Ukończono zamówienie robocze"
|
|
1703
1725
|
|
|
1704
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
1726
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:273
|
|
1705
1727
|
msgid "Draft order deleted"
|
|
1706
1728
|
msgstr "Usunięto zamówienie robocze"
|
|
1707
1729
|
|
|
@@ -1738,9 +1760,9 @@ msgstr "np. Mały"
|
|
|
1738
1760
|
msgid "e.g., Red, Large, Cotton"
|
|
1739
1761
|
msgstr "np. Czerwony, Duży, Bawełna"
|
|
1740
1762
|
|
|
1741
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1742
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
1743
|
-
#: src/lib/components/shared/asset/asset-gallery.tsx:
|
|
1763
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:241
|
|
1764
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:267
|
|
1765
|
+
#: src/lib/components/shared/asset/asset-gallery.tsx:456
|
|
1744
1766
|
#: src/lib/components/shared/history-timeline/history-note-entry.tsx:48
|
|
1745
1767
|
msgid "Edit"
|
|
1746
1768
|
msgstr "Edytuj"
|
|
@@ -1792,11 +1814,15 @@ msgstr "Edytuj slug ręcznie"
|
|
|
1792
1814
|
msgid "Edit the address details below."
|
|
1793
1815
|
msgstr "Edytuj szczegóły adresu poniżej."
|
|
1794
1816
|
|
|
1817
|
+
#: src/lib/components/login/login-form.tsx:83
|
|
1818
|
+
msgid "Email"
|
|
1819
|
+
msgstr "E-mail"
|
|
1820
|
+
|
|
1795
1821
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:185
|
|
1796
1822
|
msgid "Email address"
|
|
1797
1823
|
msgstr "Adres e-mail"
|
|
1798
1824
|
|
|
1799
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
1825
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:131
|
|
1800
1826
|
#: src/app/routes/_authenticated/_profile/profile.tsx:104
|
|
1801
1827
|
msgid "Email Address or identifier"
|
|
1802
1828
|
msgstr "Adres e-mail lub identyfikator"
|
|
@@ -1815,20 +1841,20 @@ msgstr "Włącz"
|
|
|
1815
1841
|
|
|
1816
1842
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:96
|
|
1817
1843
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:140
|
|
1818
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
1819
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1844
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:43
|
|
1845
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:225
|
|
1820
1846
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:121
|
|
1821
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1847
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:146
|
|
1822
1848
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:113
|
|
1823
1849
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:117
|
|
1824
1850
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:105
|
|
1825
1851
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:47
|
|
1826
1852
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates.tsx:49
|
|
1827
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1853
|
+
#: src/lib/components/layout/nav-user.tsx:158
|
|
1828
1854
|
msgid "Enabled"
|
|
1829
1855
|
msgstr "Włączono"
|
|
1830
1856
|
|
|
1831
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
1857
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:187
|
|
1832
1858
|
msgid "Ends at"
|
|
1833
1859
|
msgstr "Data zakończenia"
|
|
1834
1860
|
|
|
@@ -1848,7 +1874,7 @@ msgstr "Wprowadź ID transakcji dla tego rozliczenia zwrotu"
|
|
|
1848
1874
|
msgid "Enter transaction ID"
|
|
1849
1875
|
msgstr "Wprowadź ID transakcji"
|
|
1850
1876
|
|
|
1851
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
1877
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:377
|
|
1852
1878
|
msgid "Entity Information"
|
|
1853
1879
|
msgstr "Informacje o encji"
|
|
1854
1880
|
|
|
@@ -1894,7 +1920,7 @@ msgstr "Co 60 sekund"
|
|
|
1894
1920
|
msgid "ex. tax:"
|
|
1895
1921
|
msgstr "bez podatku:"
|
|
1896
1922
|
|
|
1897
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
1923
|
+
#: src/lib/components/layout/nav-user.tsx:100
|
|
1898
1924
|
msgid "Explore Enterprise Edition"
|
|
1899
1925
|
msgstr "Poznaj Enterprise Edition"
|
|
1900
1926
|
|
|
@@ -1903,7 +1929,7 @@ msgid "Facet"
|
|
|
1903
1929
|
msgstr "Aspekt"
|
|
1904
1930
|
|
|
1905
1931
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:145
|
|
1906
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
1932
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:429
|
|
1907
1933
|
msgid "Facet values"
|
|
1908
1934
|
msgstr "Wartości aspektów"
|
|
1909
1935
|
|
|
@@ -1919,7 +1945,7 @@ msgstr "Wartości aspektów dla {facetName}"
|
|
|
1919
1945
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:37
|
|
1920
1946
|
#: src/app/routes/_authenticated/_facets/facets.tsx:24
|
|
1921
1947
|
#: src/app/routes/_authenticated/_facets/facets.tsx:64
|
|
1922
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
1948
|
+
#: src/lib/components/shared/facet-value-selector.tsx:405
|
|
1923
1949
|
msgid "Facets"
|
|
1924
1950
|
msgstr "Aspekty"
|
|
1925
1951
|
|
|
@@ -1955,6 +1981,10 @@ msgstr "Nie udało się przekonwertować widoku na globalny"
|
|
|
1955
1981
|
msgid "Failed to create address"
|
|
1956
1982
|
msgstr "Nie udało się utworzyć adresu"
|
|
1957
1983
|
|
|
1984
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
1985
|
+
msgid "Failed to create administrator"
|
|
1986
|
+
msgstr "Nie udało się utworzyć administratora"
|
|
1987
|
+
|
|
1958
1988
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:92
|
|
1959
1989
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:98
|
|
1960
1990
|
msgid "Failed to create channel"
|
|
@@ -1997,6 +2027,10 @@ msgstr "Nie udało się utworzyć metody płatności"
|
|
|
1997
2027
|
msgid "Failed to create product"
|
|
1998
2028
|
msgstr "Nie udało się utworzyć produktu"
|
|
1999
2029
|
|
|
2030
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:139
|
|
2031
|
+
msgid "Failed to create product option"
|
|
2032
|
+
msgstr "Nie udało się utworzyć opcji produktu"
|
|
2033
|
+
|
|
2000
2034
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:117
|
|
2001
2035
|
msgid "Failed to create product option group"
|
|
2002
2036
|
msgstr "Nie udało się utworzyć grupy opcji produktu"
|
|
@@ -2006,13 +2040,13 @@ msgstr "Nie udało się utworzyć grupy opcji produktu"
|
|
|
2006
2040
|
msgid "Failed to create product options"
|
|
2007
2041
|
msgstr "Nie udało się utworzyć opcji produktu"
|
|
2008
2042
|
|
|
2009
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2043
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:126
|
|
2010
2044
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:174
|
|
2011
2045
|
msgid "Failed to create product variant"
|
|
2012
2046
|
msgstr "Nie udało się utworzyć wariantu produktu"
|
|
2013
2047
|
|
|
2014
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2015
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2048
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:112
|
|
2049
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:120
|
|
2016
2050
|
msgid "Failed to create promotion"
|
|
2017
2051
|
msgstr "Nie udało się utworzyć promocji"
|
|
2018
2052
|
|
|
@@ -2024,6 +2058,10 @@ msgstr "Nie udało się utworzyć roli"
|
|
|
2024
2058
|
msgid "Failed to create seller"
|
|
2025
2059
|
msgstr "Nie udało się utworzyć sprzedawcy"
|
|
2026
2060
|
|
|
2061
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2062
|
+
msgid "Failed to create shipping method"
|
|
2063
|
+
msgstr "Nie udało się utworzyć metody wysyłki"
|
|
2064
|
+
|
|
2027
2065
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
|
|
2028
2066
|
msgid "Failed to create stock location"
|
|
2029
2067
|
msgstr "Nie udało się utworzyć lokalizacji magazynowej"
|
|
@@ -2040,8 +2078,8 @@ msgstr "Nie udało się utworzyć stawki podatkowej"
|
|
|
2040
2078
|
msgid "Failed to create zone"
|
|
2041
2079
|
msgstr "Nie udało się utworzyć strefy"
|
|
2042
2080
|
|
|
2043
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2044
|
-
#: src/lib/components/data-table/use-generated-columns.tsx:
|
|
2081
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:298
|
|
2082
|
+
#: src/lib/components/data-table/use-generated-columns.tsx:304
|
|
2045
2083
|
msgid "Failed to delete"
|
|
2046
2084
|
msgstr "Nie udało się usunąć"
|
|
2047
2085
|
|
|
@@ -2129,6 +2167,10 @@ msgstr "Nie udało się przenieść zamówienia do stanu"
|
|
|
2129
2167
|
msgid "Failed to update address"
|
|
2130
2168
|
msgstr "Nie udało się zaktualizować adresu"
|
|
2131
2169
|
|
|
2170
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
2171
|
+
msgid "Failed to update administrator"
|
|
2172
|
+
msgstr "Nie udało się zaktualizować administratora"
|
|
2173
|
+
|
|
2132
2174
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:74
|
|
2133
2175
|
msgid "Failed to update asset"
|
|
2134
2176
|
msgstr "Nie udało się zaktualizować zasobu"
|
|
@@ -2168,13 +2210,13 @@ msgstr "Nie udało się zaktualizować wartości aspektu"
|
|
|
2168
2210
|
msgid "Failed to update fulfillment state"
|
|
2169
2211
|
msgstr "Nie udało się zaktualizować stanu realizacji"
|
|
2170
2212
|
|
|
2171
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2172
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2213
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:77
|
|
2214
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:83
|
|
2173
2215
|
msgid "Failed to update global settings"
|
|
2174
2216
|
msgstr "Nie udało się zaktualizować ustawień globalnych"
|
|
2175
2217
|
|
|
2176
2218
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:89
|
|
2177
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2219
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:59
|
|
2178
2220
|
msgid "Failed to update order"
|
|
2179
2221
|
msgstr "Nie udało się zaktualizować zamówienia"
|
|
2180
2222
|
|
|
@@ -2191,11 +2233,15 @@ msgstr "Nie udało się zaktualizować stanu płatności"
|
|
|
2191
2233
|
msgid "Failed to update product"
|
|
2192
2234
|
msgstr "Nie udało się zaktualizować produktu"
|
|
2193
2235
|
|
|
2236
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:139
|
|
2237
|
+
msgid "Failed to update product option"
|
|
2238
|
+
msgstr "Nie udało się zaktualizować opcji produktu"
|
|
2239
|
+
|
|
2194
2240
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:118
|
|
2195
2241
|
msgid "Failed to update product option group"
|
|
2196
2242
|
msgstr "Nie udało się zaktualizować grupy opcji produktu"
|
|
2197
2243
|
|
|
2198
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2244
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:126
|
|
2199
2245
|
msgid "Failed to update product variant"
|
|
2200
2246
|
msgstr "Nie udało się zaktualizować wariantu produktu"
|
|
2201
2247
|
|
|
@@ -2203,8 +2249,8 @@ msgstr "Nie udało się zaktualizować wariantu produktu"
|
|
|
2203
2249
|
msgid "Failed to update profile"
|
|
2204
2250
|
msgstr "Nie udało się zaktualizować profilu"
|
|
2205
2251
|
|
|
2206
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2207
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2252
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:112
|
|
2253
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:120
|
|
2208
2254
|
msgid "Failed to update promotion"
|
|
2209
2255
|
msgstr "Nie udało się zaktualizować promocji"
|
|
2210
2256
|
|
|
@@ -2216,6 +2262,10 @@ msgstr "Nie udało się zaktualizować roli"
|
|
|
2216
2262
|
msgid "Failed to update seller"
|
|
2217
2263
|
msgstr "Nie udało się zaktualizować sprzedawcy"
|
|
2218
2264
|
|
|
2265
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2266
|
+
msgid "Failed to update shipping method"
|
|
2267
|
+
msgstr "Nie udało się zaktualizować metody wysyłki"
|
|
2268
|
+
|
|
2219
2269
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:79
|
|
2220
2270
|
msgid "Failed to update stock location"
|
|
2221
2271
|
msgstr "Nie udało się zaktualizować lokalizacji magazynowej"
|
|
@@ -2236,7 +2286,7 @@ msgstr "Nie udało się zaktualizować strefy"
|
|
|
2236
2286
|
msgid "False"
|
|
2237
2287
|
msgstr "Fałsz"
|
|
2238
2288
|
|
|
2239
|
-
#: src/lib/components/data-table/data-table-filter-dialog.tsx:
|
|
2289
|
+
#: src/lib/components/data-table/data-table-filter-dialog.tsx:51
|
|
2240
2290
|
msgid "Filter by {columnId}"
|
|
2241
2291
|
msgstr "Filtruj według {columnId}"
|
|
2242
2292
|
|
|
@@ -2248,7 +2298,7 @@ msgstr "Filtruj według nazwy kolekcji"
|
|
|
2248
2298
|
msgid "Filter by tags"
|
|
2249
2299
|
msgstr "Filtruj według tagów"
|
|
2250
2300
|
|
|
2251
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
2301
|
+
#: src/lib/components/data-table/data-table.tsx:244
|
|
2252
2302
|
msgid "Filter..."
|
|
2253
2303
|
msgstr "Filtruj..."
|
|
2254
2304
|
|
|
@@ -2256,7 +2306,7 @@ msgstr "Filtruj..."
|
|
|
2256
2306
|
msgid "Filters"
|
|
2257
2307
|
msgstr "Filtry"
|
|
2258
2308
|
|
|
2259
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2309
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:119
|
|
2260
2310
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:173
|
|
2261
2311
|
#: src/app/routes/_authenticated/_profile/profile.tsx:92
|
|
2262
2312
|
msgid "First name"
|
|
@@ -2314,7 +2364,7 @@ msgid "Fulfillment details"
|
|
|
2314
2364
|
msgstr "Szczegóły realizacji"
|
|
2315
2365
|
|
|
2316
2366
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:289
|
|
2317
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2367
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:159
|
|
2318
2368
|
msgid "Fulfillment handler"
|
|
2319
2369
|
msgstr "Obsługa realizacji"
|
|
2320
2370
|
|
|
@@ -2331,7 +2381,7 @@ msgid "Fulfillment transitioned"
|
|
|
2331
2381
|
msgstr "Realizację przeniesiono"
|
|
2332
2382
|
|
|
2333
2383
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:108
|
|
2334
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
2384
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:159
|
|
2335
2385
|
#: src/lib/components/shared/customer-address-form.tsx:99
|
|
2336
2386
|
msgid "Full Name"
|
|
2337
2387
|
msgstr "Pełne imię i nazwisko"
|
|
@@ -2349,12 +2399,12 @@ msgstr "Generuj slug automatycznie"
|
|
|
2349
2399
|
msgid "Global Languages"
|
|
2350
2400
|
msgstr "Języki globalne"
|
|
2351
2401
|
|
|
2352
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2402
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:131
|
|
2353
2403
|
msgid "Global out of stock threshold"
|
|
2354
2404
|
msgstr "Globalny próg braku w magazynie"
|
|
2355
2405
|
|
|
2356
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2357
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
2406
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:42
|
|
2407
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:92
|
|
2358
2408
|
msgid "Global Settings"
|
|
2359
2409
|
msgstr "Ustawienia globalne"
|
|
2360
2410
|
|
|
@@ -2374,6 +2424,22 @@ msgstr "Pomyślnie zduplikowano widok globalny"
|
|
|
2374
2424
|
msgid "Global view renamed successfully"
|
|
2375
2425
|
msgstr "Pomyślnie zmieniono nazwę widoku globalnego"
|
|
2376
2426
|
|
|
2427
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:58
|
|
2428
|
+
msgid "Go to first page"
|
|
2429
|
+
msgstr "Przejdź do pierwszej strony"
|
|
2430
|
+
|
|
2431
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:95
|
|
2432
|
+
msgid "Go to last page"
|
|
2433
|
+
msgstr "Przejdź do ostatniej strony"
|
|
2434
|
+
|
|
2435
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:83
|
|
2436
|
+
msgid "Go to next page"
|
|
2437
|
+
msgstr "Przejdź do następnej strony"
|
|
2438
|
+
|
|
2439
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:70
|
|
2440
|
+
msgid "Go to previous page"
|
|
2441
|
+
msgstr "Przejdź do poprzedniej strony"
|
|
2442
|
+
|
|
2377
2443
|
#: src/lib/components/data-table/human-readable-operator.tsx:40
|
|
2378
2444
|
msgid "greater than"
|
|
2379
2445
|
msgstr "większe niż"
|
|
@@ -2426,7 +2492,7 @@ msgstr "Wysokość"
|
|
|
2426
2492
|
msgid "ID"
|
|
2427
2493
|
msgstr "ID"
|
|
2428
2494
|
|
|
2429
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
2495
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:74
|
|
2430
2496
|
msgid "Identifier"
|
|
2431
2497
|
msgstr "Identyfikator"
|
|
2432
2498
|
|
|
@@ -2446,7 +2512,7 @@ msgstr "w"
|
|
|
2446
2512
|
msgid "Inherit filters"
|
|
2447
2513
|
msgstr "Dziedzicz filtry"
|
|
2448
2514
|
|
|
2449
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2515
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:337
|
|
2450
2516
|
msgid "Inherit from global settings"
|
|
2451
2517
|
msgstr "Dziedzicz z ustawień globalnych"
|
|
2452
2518
|
|
|
@@ -2515,7 +2581,7 @@ msgstr "nie jest w"
|
|
|
2515
2581
|
msgid "is null"
|
|
2516
2582
|
msgstr "jest puste"
|
|
2517
2583
|
|
|
2518
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
2584
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:106
|
|
2519
2585
|
msgid "Item added to order"
|
|
2520
2586
|
msgstr "Dodano pozycję do zamówienia"
|
|
2521
2587
|
|
|
@@ -2524,7 +2590,7 @@ msgstr "Dodano pozycję do zamówienia"
|
|
|
2524
2590
|
msgid "Job Queue"
|
|
2525
2591
|
msgstr "Kolejka zadań"
|
|
2526
2592
|
|
|
2527
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2593
|
+
#: src/lib/components/layout/nav-user.tsx:114
|
|
2528
2594
|
msgid "Language"
|
|
2529
2595
|
msgstr "Język"
|
|
2530
2596
|
|
|
@@ -2552,7 +2618,7 @@ msgctxt "date-range"
|
|
|
2552
2618
|
msgid "Last month"
|
|
2553
2619
|
msgstr "Ostatni miesiąc"
|
|
2554
2620
|
|
|
2555
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2621
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:125
|
|
2556
2622
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:179
|
|
2557
2623
|
#: src/app/routes/_authenticated/_profile/profile.tsx:98
|
|
2558
2624
|
msgid "Last name"
|
|
@@ -2567,7 +2633,7 @@ msgstr "Ostatni wynik"
|
|
|
2567
2633
|
msgid "Last updated {0}"
|
|
2568
2634
|
msgstr "Ostatnia aktualizacja {0}"
|
|
2569
2635
|
|
|
2570
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
2636
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:58
|
|
2571
2637
|
msgid "Latest Orders"
|
|
2572
2638
|
msgstr "Ostatnie zamówienia"
|
|
2573
2639
|
|
|
@@ -2579,7 +2645,7 @@ msgstr "mniejsze niż"
|
|
|
2579
2645
|
msgid "less than or equal"
|
|
2580
2646
|
msgstr "mniejsze lub równe"
|
|
2581
2647
|
|
|
2582
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2648
|
+
#: src/lib/components/layout/nav-user.tsx:131
|
|
2583
2649
|
msgctxt "theme"
|
|
2584
2650
|
msgid "Light"
|
|
2585
2651
|
msgstr "Jasny"
|
|
@@ -2625,8 +2691,9 @@ msgstr "Ładowanie tagów..."
|
|
|
2625
2691
|
#: src/lib/components/data-input/product-multi-selector-input.tsx:82
|
|
2626
2692
|
#: src/lib/components/data-input/relation-selector.tsx:427
|
|
2627
2693
|
#: src/lib/components/shared/country-selector.tsx:88
|
|
2694
|
+
#: src/lib/components/shared/customer-group-selector.tsx:58
|
|
2628
2695
|
#: src/lib/components/shared/customer-selector.tsx:90
|
|
2629
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
2696
|
+
#: src/lib/components/shared/facet-value-selector.tsx:340
|
|
2630
2697
|
#: src/lib/components/shared/seller-selector.tsx:92
|
|
2631
2698
|
msgid "Loading..."
|
|
2632
2699
|
msgstr "Ładowanie..."
|
|
@@ -2635,7 +2702,7 @@ msgstr "Ładowanie..."
|
|
|
2635
2702
|
msgid "Locale"
|
|
2636
2703
|
msgstr "Ustawienia regionalne"
|
|
2637
2704
|
|
|
2638
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
2705
|
+
#: src/lib/components/layout/nav-user.tsx:171
|
|
2639
2706
|
msgid "Log out"
|
|
2640
2707
|
msgstr "Wyloguj się"
|
|
2641
2708
|
|
|
@@ -2706,7 +2773,7 @@ msgstr "Metryki"
|
|
|
2706
2773
|
msgid "Modify"
|
|
2707
2774
|
msgstr "Modyfikuj"
|
|
2708
2775
|
|
|
2709
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
2776
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:159
|
|
2710
2777
|
msgid "Modify order"
|
|
2711
2778
|
msgstr "Modyfikuj zamówienie"
|
|
2712
2779
|
|
|
@@ -2747,7 +2814,7 @@ msgstr "Przenoszenie {0} kolekcji do {2}"
|
|
|
2747
2814
|
msgid "Moving..."
|
|
2748
2815
|
msgstr "Przenoszenie..."
|
|
2749
2816
|
|
|
2750
|
-
#: src/lib/components/data-table/my-views-button.tsx:
|
|
2817
|
+
#: src/lib/components/data-table/my-views-button.tsx:39
|
|
2751
2818
|
msgid "My saved views"
|
|
2752
2819
|
msgstr "Moje zapisane widoki"
|
|
2753
2820
|
|
|
@@ -2755,11 +2822,11 @@ msgstr "Moje zapisane widoki"
|
|
|
2755
2822
|
msgid "My Saved Views"
|
|
2756
2823
|
msgstr "Moje zapisane widoki"
|
|
2757
2824
|
|
|
2758
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
2825
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:46
|
|
2759
2826
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:146
|
|
2760
2827
|
#: src/app/routes/_authenticated/_countries/countries_.$id.tsx:108
|
|
2761
2828
|
#: src/app/routes/_authenticated/_customer-groups/customer-groups_.$id.tsx:107
|
|
2762
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
2829
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:72
|
|
2763
2830
|
#: src/app/routes/_authenticated/_facets/components/edit-facet-value.tsx:104
|
|
2764
2831
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:134
|
|
2765
2832
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:124
|
|
@@ -2767,10 +2834,10 @@ msgstr "Moje zapisane widoki"
|
|
|
2767
2834
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:328
|
|
2768
2835
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:303
|
|
2769
2836
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:149
|
|
2770
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
2771
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2837
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:181
|
|
2838
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:158
|
|
2772
2839
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:96
|
|
2773
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2840
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:137
|
|
2774
2841
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:109
|
|
2775
2842
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:109
|
|
2776
2843
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:116
|
|
@@ -2784,7 +2851,7 @@ msgid "Never"
|
|
|
2784
2851
|
msgstr "Nigdy"
|
|
2785
2852
|
|
|
2786
2853
|
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:40
|
|
2787
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
2854
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:99
|
|
2788
2855
|
msgid "New administrator"
|
|
2789
2856
|
msgstr "Nowy administrator"
|
|
2790
2857
|
|
|
@@ -2806,7 +2873,7 @@ msgstr "Nowy kanał"
|
|
|
2806
2873
|
msgid "New collection"
|
|
2807
2874
|
msgstr "Nowa kolekcja"
|
|
2808
2875
|
|
|
2809
|
-
#: src/app/routes/_authenticated/_collections/collections.tsx:
|
|
2876
|
+
#: src/app/routes/_authenticated/_collections/collections.tsx:247
|
|
2810
2877
|
msgid "New Collection"
|
|
2811
2878
|
msgstr "Nowa kolekcja"
|
|
2812
2879
|
|
|
@@ -2820,7 +2887,7 @@ msgstr "Nowy kraj"
|
|
|
2820
2887
|
msgid "New customer"
|
|
2821
2888
|
msgstr "Nowy klient"
|
|
2822
2889
|
|
|
2823
|
-
#: src/app/routes/_authenticated/_customers/customers.tsx:
|
|
2890
|
+
#: src/app/routes/_authenticated/_customers/customers.tsx:97
|
|
2824
2891
|
msgid "New Customer"
|
|
2825
2892
|
msgstr "Nowy klient"
|
|
2826
2893
|
|
|
@@ -2864,7 +2931,7 @@ msgstr "Nowa opcja"
|
|
|
2864
2931
|
msgid "New payment method"
|
|
2865
2932
|
msgstr "Nowa metoda płatności"
|
|
2866
2933
|
|
|
2867
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
2934
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:81
|
|
2868
2935
|
msgid "New Payment Method"
|
|
2869
2936
|
msgstr "Nowa metoda płatności"
|
|
2870
2937
|
|
|
@@ -2873,11 +2940,11 @@ msgstr "Nowa metoda płatności"
|
|
|
2873
2940
|
msgid "New product"
|
|
2874
2941
|
msgstr "Nowy produkt"
|
|
2875
2942
|
|
|
2876
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
2943
|
+
#: src/app/routes/_authenticated/_products/products.tsx:102
|
|
2877
2944
|
msgid "New Product"
|
|
2878
2945
|
msgstr "Nowy produkt"
|
|
2879
2946
|
|
|
2880
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
2947
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:150
|
|
2881
2948
|
msgid "New product option"
|
|
2882
2949
|
msgstr "Nowa opcja produktu"
|
|
2883
2950
|
|
|
@@ -2885,16 +2952,16 @@ msgstr "Nowa opcja produktu"
|
|
|
2885
2952
|
msgid "New product option group"
|
|
2886
2953
|
msgstr "Nowa grupa opcji produktu"
|
|
2887
2954
|
|
|
2888
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
2955
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:206
|
|
2889
2956
|
msgid "New product variant"
|
|
2890
2957
|
msgstr "Nowy wariant produktu"
|
|
2891
2958
|
|
|
2892
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2893
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
2959
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:45
|
|
2960
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:128
|
|
2894
2961
|
msgid "New promotion"
|
|
2895
2962
|
msgstr "Nowa promocja"
|
|
2896
2963
|
|
|
2897
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
2964
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:87
|
|
2898
2965
|
msgid "New Promotion"
|
|
2899
2966
|
msgstr "Nowa promocja"
|
|
2900
2967
|
|
|
@@ -2917,11 +2984,11 @@ msgid "New Seller"
|
|
|
2917
2984
|
msgstr "Nowy sprzedawca"
|
|
2918
2985
|
|
|
2919
2986
|
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:44
|
|
2920
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
2987
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:114
|
|
2921
2988
|
msgid "New shipping method"
|
|
2922
2989
|
msgstr "Nowa metoda wysyłki"
|
|
2923
2990
|
|
|
2924
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
2991
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:69
|
|
2925
2992
|
msgid "New Shipping Method"
|
|
2926
2993
|
msgstr "Nowa metoda wysyłki"
|
|
2927
2994
|
|
|
@@ -2982,7 +3049,11 @@ msgstr "Brak adresu"
|
|
|
2982
3049
|
msgid "No addresses found"
|
|
2983
3050
|
msgstr "Nie znaleziono adresów"
|
|
2984
3051
|
|
|
2985
|
-
#: src/
|
|
3052
|
+
#: src/lib/components/shared/alerts.tsx:43
|
|
3053
|
+
msgid "No alerts"
|
|
3054
|
+
msgstr "Brak alertów"
|
|
3055
|
+
|
|
3056
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:280
|
|
2986
3057
|
msgid "No billing address"
|
|
2987
3058
|
msgstr "Brak adresu rozliczeniowego"
|
|
2988
3059
|
|
|
@@ -2991,7 +3062,7 @@ msgid "No countries found"
|
|
|
2991
3062
|
msgstr "Nie znaleziono krajów"
|
|
2992
3063
|
|
|
2993
3064
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:252
|
|
2994
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3065
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:227
|
|
2995
3066
|
msgid "No customer"
|
|
2996
3067
|
msgstr "Brak klienta"
|
|
2997
3068
|
|
|
@@ -3031,12 +3102,16 @@ msgstr "Nie znaleziono pozycji"
|
|
|
3031
3102
|
msgid "No items selected"
|
|
3032
3103
|
msgstr "Nie wybrano pozycji"
|
|
3033
3104
|
|
|
3034
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3105
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:218
|
|
3035
3106
|
msgid "No modifications made"
|
|
3036
3107
|
msgstr "Nie wprowadzono modyfikacji"
|
|
3037
3108
|
|
|
3109
|
+
#: src/lib/components/shared/facet-value-selector.tsx:425
|
|
3110
|
+
msgid "No more facets"
|
|
3111
|
+
msgstr "Brak więcej faset"
|
|
3112
|
+
|
|
3038
3113
|
#: src/lib/components/data-input/relation-selector.tsx:458
|
|
3039
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
3114
|
+
#: src/lib/components/shared/facet-value-selector.tsx:397
|
|
3040
3115
|
msgid "No more items"
|
|
3041
3116
|
msgstr "Nie ma więcej pozycji"
|
|
3042
3117
|
|
|
@@ -3057,12 +3132,13 @@ msgstr "Nie wymagana płatność ani zwrot"
|
|
|
3057
3132
|
msgid "No result yet"
|
|
3058
3133
|
msgstr "Brak wyniku"
|
|
3059
3134
|
|
|
3060
|
-
#: src/lib/components/data-table/data-table.tsx:
|
|
3135
|
+
#: src/lib/components/data-table/data-table.tsx:366
|
|
3136
|
+
#: src/lib/components/shared/customer-group-selector.tsx:58
|
|
3061
3137
|
msgid "No results"
|
|
3062
3138
|
msgstr "Brak wyników"
|
|
3063
3139
|
|
|
3064
3140
|
#: src/lib/components/data-input/relation-selector.tsx:430
|
|
3065
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
3141
|
+
#: src/lib/components/shared/facet-value-selector.tsx:344
|
|
3066
3142
|
msgid "No results found"
|
|
3067
3143
|
msgstr "Nie znaleziono wyników"
|
|
3068
3144
|
|
|
@@ -3070,7 +3146,7 @@ msgstr "Nie znaleziono wyników"
|
|
|
3070
3146
|
msgid "No sellers found"
|
|
3071
3147
|
msgstr "Nie znaleziono sprzedawców"
|
|
3072
3148
|
|
|
3073
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3149
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:254
|
|
3074
3150
|
msgid "No shipping address"
|
|
3075
3151
|
msgstr "Brak adresu wysyłki"
|
|
3076
3152
|
|
|
@@ -3187,6 +3263,10 @@ msgstr "Anulowano zamówienie"
|
|
|
3187
3263
|
msgid "Order Count"
|
|
3188
3264
|
msgstr "Liczba zamówień"
|
|
3189
3265
|
|
|
3266
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:89
|
|
3267
|
+
msgid "Order custom fields updated"
|
|
3268
|
+
msgstr "Niestandardowe pola zamówienia zaktualizowane"
|
|
3269
|
+
|
|
3190
3270
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:90
|
|
3191
3271
|
msgid "Order delivered"
|
|
3192
3272
|
msgstr "Dostarczono zamówienie"
|
|
@@ -3200,16 +3280,16 @@ msgstr "Zrealizowano zamówienie"
|
|
|
3200
3280
|
msgid "Order history"
|
|
3201
3281
|
msgstr "Historia zamówień"
|
|
3202
3282
|
|
|
3203
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3283
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:143
|
|
3204
3284
|
msgid "Order line removed"
|
|
3205
3285
|
msgstr "Usunięto wiersz zamówienia"
|
|
3206
3286
|
|
|
3207
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3287
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:127
|
|
3208
3288
|
msgid "Order line updated"
|
|
3209
3289
|
msgstr "Zaktualizowano wiersz zamówienia"
|
|
3210
3290
|
|
|
3211
3291
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:241
|
|
3212
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3292
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:169
|
|
3213
3293
|
msgid "Order lines"
|
|
3214
3294
|
msgstr "Wiersze zamówienia"
|
|
3215
3295
|
|
|
@@ -3261,13 +3341,19 @@ msgstr "Zamówienia"
|
|
|
3261
3341
|
msgid "Orders Summary"
|
|
3262
3342
|
msgstr "Podsumowanie zamówień"
|
|
3263
3343
|
|
|
3264
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3344
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:352
|
|
3265
3345
|
msgid "Out-of-stock threshold"
|
|
3266
3346
|
msgstr "Próg braku w magazynie"
|
|
3267
3347
|
|
|
3268
|
-
|
|
3348
|
+
#. placeholder {0}: table.getState().pagination.pageIndex + 1
|
|
3349
|
+
#. placeholder {1}: table.getPageCount() || 1
|
|
3350
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:44
|
|
3351
|
+
msgid "Page {0} of {1}"
|
|
3352
|
+
msgstr "Strona {0} z {1}"
|
|
3353
|
+
|
|
3354
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:137
|
|
3269
3355
|
#: src/app/routes/_authenticated/_profile/profile.tsx:110
|
|
3270
|
-
#: src/lib/components/login/login-form.tsx:
|
|
3356
|
+
#: src/lib/components/login/login-form.tsx:95
|
|
3271
3357
|
msgid "Password"
|
|
3272
3358
|
msgstr "Hasło"
|
|
3273
3359
|
|
|
@@ -3326,8 +3412,8 @@ msgid "Payment method is required"
|
|
|
3326
3412
|
msgstr "Metoda płatności jest wymagana"
|
|
3327
3413
|
|
|
3328
3414
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:42
|
|
3329
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
3330
|
-
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:
|
|
3415
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:20
|
|
3416
|
+
#: src/app/routes/_authenticated/_payment-methods/payment-methods.tsx:30
|
|
3331
3417
|
msgid "Payment Methods"
|
|
3332
3418
|
msgstr "Metody płatności"
|
|
3333
3419
|
|
|
@@ -3347,7 +3433,7 @@ msgstr "Pomyślnie zaktualizowano stan płatności"
|
|
|
3347
3433
|
msgid "Payment transitioned"
|
|
3348
3434
|
msgstr "Przeniesiono płatność"
|
|
3349
3435
|
|
|
3350
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3436
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:205
|
|
3351
3437
|
msgid "Per customer usage limit"
|
|
3352
3438
|
msgstr "Limit użycia na klienta"
|
|
3353
3439
|
|
|
@@ -3360,12 +3446,12 @@ msgid "Phone number"
|
|
|
3360
3446
|
msgstr "Numer telefonu"
|
|
3361
3447
|
|
|
3362
3448
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:272
|
|
3363
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
3449
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:241
|
|
3364
3450
|
#: src/lib/components/shared/customer-address-form.tsx:263
|
|
3365
3451
|
msgid "Phone Number"
|
|
3366
3452
|
msgstr "Numer telefonu"
|
|
3367
3453
|
|
|
3368
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
3454
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:88
|
|
3369
3455
|
msgid "Placed At"
|
|
3370
3456
|
msgstr "Złożono"
|
|
3371
3457
|
|
|
@@ -3378,12 +3464,12 @@ msgid "Please select a target collection"
|
|
|
3378
3464
|
msgstr "Wybierz kolekcję docelową"
|
|
3379
3465
|
|
|
3380
3466
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:222
|
|
3381
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
3467
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:208
|
|
3382
3468
|
#: src/lib/components/shared/customer-address-form.tsx:213
|
|
3383
3469
|
msgid "Postal Code"
|
|
3384
3470
|
msgstr "Kod pocztowy"
|
|
3385
3471
|
|
|
3386
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3472
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:206
|
|
3387
3473
|
msgid "Preview changes"
|
|
3388
3474
|
msgstr "Podgląd zmian"
|
|
3389
3475
|
|
|
@@ -3392,14 +3478,14 @@ msgid "Preview order modifications"
|
|
|
3392
3478
|
msgstr "Podgląd modyfikacji zamówienia"
|
|
3393
3479
|
|
|
3394
3480
|
#: src/app/routes/_authenticated/_orders/components/shipping-method-selector.tsx:49
|
|
3395
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3481
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:271
|
|
3396
3482
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:340
|
|
3397
3483
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:209
|
|
3398
3484
|
#: src/lib/components/layout/language-dialog.tsx:108
|
|
3399
3485
|
msgid "Price"
|
|
3400
3486
|
msgstr "Cena"
|
|
3401
3487
|
|
|
3402
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3488
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:251
|
|
3403
3489
|
msgid "Price and tax"
|
|
3404
3490
|
msgstr "Cena i podatek"
|
|
3405
3491
|
|
|
@@ -3428,16 +3514,17 @@ msgstr "Prywatne kolekcje nie są widoczne w sklepie"
|
|
|
3428
3514
|
msgid "Private facets are not visible in the shop"
|
|
3429
3515
|
msgstr "Prywatne aspekty nie są widoczne w sklepie"
|
|
3430
3516
|
|
|
3431
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
3517
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:87
|
|
3518
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:44
|
|
3432
3519
|
msgid "Product"
|
|
3433
3520
|
msgstr "Produkt"
|
|
3434
3521
|
|
|
3435
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3522
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:237
|
|
3436
3523
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:133
|
|
3437
3524
|
msgid "Product name"
|
|
3438
3525
|
msgstr "Nazwa produktu"
|
|
3439
3526
|
|
|
3440
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
3527
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:169
|
|
3441
3528
|
msgid "Product Option Group"
|
|
3442
3529
|
msgstr "Grupa opcji produktu"
|
|
3443
3530
|
|
|
@@ -3450,31 +3537,31 @@ msgstr "Opcje produktu"
|
|
|
3450
3537
|
msgid "Product Options"
|
|
3451
3538
|
msgstr "Opcje produktu"
|
|
3452
3539
|
|
|
3453
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3540
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:61
|
|
3454
3541
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:18
|
|
3455
3542
|
#: src/app/routes/_authenticated/_product-variants/product-variants.tsx:26
|
|
3456
3543
|
msgid "Product Variants"
|
|
3457
3544
|
msgstr "Warianty produktów"
|
|
3458
3545
|
|
|
3459
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3546
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:56
|
|
3460
3547
|
#: src/app/routes/_authenticated/_products/products_.$id_.variants.tsx:54
|
|
3461
3548
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:45
|
|
3462
3549
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:61
|
|
3463
3550
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:79
|
|
3464
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3465
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3551
|
+
#: src/app/routes/_authenticated/_products/products.tsx:24
|
|
3552
|
+
#: src/app/routes/_authenticated/_products/products.tsx:47
|
|
3466
3553
|
msgid "Products"
|
|
3467
3554
|
msgstr "Produkty"
|
|
3468
3555
|
|
|
3469
3556
|
#: src/app/routes/_authenticated/_profile/profile.tsx:30
|
|
3470
3557
|
#: src/app/routes/_authenticated/_profile/profile.tsx:74
|
|
3471
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
3558
|
+
#: src/lib/components/layout/nav-user.tsx:108
|
|
3472
3559
|
msgid "Profile"
|
|
3473
3560
|
msgstr "Profil"
|
|
3474
3561
|
|
|
3475
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
3476
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
3477
|
-
#: src/app/routes/_authenticated/_promotions/promotions.tsx:
|
|
3562
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:44
|
|
3563
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:21
|
|
3564
|
+
#: src/app/routes/_authenticated/_promotions/promotions.tsx:30
|
|
3478
3565
|
msgid "Promotions"
|
|
3479
3566
|
msgstr "Promocje"
|
|
3480
3567
|
|
|
@@ -3482,8 +3569,9 @@ msgstr "Promocje"
|
|
|
3482
3569
|
msgid "public"
|
|
3483
3570
|
msgstr "publiczne"
|
|
3484
3571
|
|
|
3572
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:111
|
|
3485
3573
|
#: src/app/routes/_authenticated/_orders/components/fulfill-order-dialog.tsx:265
|
|
3486
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
3574
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:80
|
|
3487
3575
|
msgid "Quantity"
|
|
3488
3576
|
msgstr "Ilość"
|
|
3489
3577
|
|
|
@@ -3499,7 +3587,7 @@ msgstr "Stawka"
|
|
|
3499
3587
|
msgid "Reason"
|
|
3500
3588
|
msgstr "Przyczyna"
|
|
3501
3589
|
|
|
3502
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3590
|
+
#: src/app/routes/_authenticated/_products/products.tsx:95
|
|
3503
3591
|
msgid "Rebuild search index"
|
|
3504
3592
|
msgstr "Przebuduj indeks wyszukiwania"
|
|
3505
3593
|
|
|
@@ -3563,7 +3651,7 @@ msgstr "Zarejestrowany"
|
|
|
3563
3651
|
msgid "Remaining:"
|
|
3564
3652
|
msgstr "Pozostało:"
|
|
3565
3653
|
|
|
3566
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3654
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:491
|
|
3567
3655
|
msgid "Remove"
|
|
3568
3656
|
msgstr "Usuń"
|
|
3569
3657
|
|
|
@@ -3583,7 +3671,7 @@ msgstr "Usuń pozycję"
|
|
|
3583
3671
|
msgid "Remove link"
|
|
3584
3672
|
msgstr "Usuń link"
|
|
3585
3673
|
|
|
3586
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3674
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:200
|
|
3587
3675
|
msgid "Removed coupon codes"
|
|
3588
3676
|
msgstr "Usunięto kody kuponów"
|
|
3589
3677
|
|
|
@@ -3592,7 +3680,7 @@ msgid "Removed from group"
|
|
|
3592
3680
|
msgstr "Usunięto z grupy"
|
|
3593
3681
|
|
|
3594
3682
|
#. placeholder {0}: removedLines.length
|
|
3595
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
3683
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:176
|
|
3596
3684
|
msgid "Removing {0} item(s)"
|
|
3597
3685
|
msgstr "Usuwanie {0} pozycji"
|
|
3598
3686
|
|
|
@@ -3608,14 +3696,18 @@ msgstr "Resetuj"
|
|
|
3608
3696
|
msgid "Review the changes before applying them to the order."
|
|
3609
3697
|
msgstr "Sprawdź zmiany przed zastosowaniem ich do zamówienia."
|
|
3610
3698
|
|
|
3611
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
3612
|
-
#: src/app/routes/_authenticated/_administrators/administrators.tsx:
|
|
3699
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:143
|
|
3700
|
+
#: src/app/routes/_authenticated/_administrators/administrators.tsx:56
|
|
3613
3701
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:34
|
|
3614
3702
|
#: src/app/routes/_authenticated/_roles/roles.tsx:19
|
|
3615
3703
|
#: src/app/routes/_authenticated/_roles/roles.tsx:28
|
|
3616
3704
|
msgid "Roles"
|
|
3617
3705
|
msgstr "Role"
|
|
3618
3706
|
|
|
3707
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:22
|
|
3708
|
+
msgid "Rows per page"
|
|
3709
|
+
msgstr "Wierszy na stronę"
|
|
3710
|
+
|
|
3619
3711
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:210
|
|
3620
3712
|
msgid "Run"
|
|
3621
3713
|
msgstr "Uruchom"
|
|
@@ -3669,7 +3761,7 @@ msgstr "Zapisz układ"
|
|
|
3669
3761
|
msgid "Save option group"
|
|
3670
3762
|
msgstr "Zapisz grupę opcji"
|
|
3671
3763
|
|
|
3672
|
-
#: src/lib/components/data-table/save-view-button.tsx:
|
|
3764
|
+
#: src/lib/components/data-table/save-view-button.tsx:35
|
|
3673
3765
|
msgid "Save View"
|
|
3674
3766
|
msgstr "Zapisz widok"
|
|
3675
3767
|
|
|
@@ -3711,11 +3803,15 @@ msgstr "Szukaj kanałów..."
|
|
|
3711
3803
|
msgid "Search currencies..."
|
|
3712
3804
|
msgstr "Szukaj walut..."
|
|
3713
3805
|
|
|
3714
|
-
#: src/
|
|
3806
|
+
#: src/lib/components/shared/facet-value-selector.tsx:304
|
|
3807
|
+
msgid "Search facet values..."
|
|
3808
|
+
msgstr "Wyszukaj wartości faset..."
|
|
3809
|
+
|
|
3810
|
+
#: src/app/routes/_authenticated/_products/products.tsx:35
|
|
3715
3811
|
msgid "Search index rebuild could not be started"
|
|
3716
3812
|
msgstr "Nie można było rozpocząć przebudowy indeksu wyszukiwania"
|
|
3717
3813
|
|
|
3718
|
-
#: src/app/routes/_authenticated/_products/products.tsx:
|
|
3814
|
+
#: src/app/routes/_authenticated/_products/products.tsx:32
|
|
3719
3815
|
msgid "Search index rebuild started"
|
|
3720
3816
|
msgstr "Rozpoczęto przebudowę indeksu wyszukiwania"
|
|
3721
3817
|
|
|
@@ -3734,7 +3830,7 @@ msgstr "Szukaj ról..."
|
|
|
3734
3830
|
#. placeholder {0}: entityName.toLowerCase()
|
|
3735
3831
|
#. placeholder {0}: group.name
|
|
3736
3832
|
#: src/app/routes/_authenticated/_products/components/product-option-select.tsx:58
|
|
3737
|
-
#: src/lib/components/data-input/default-relation-input.tsx:
|
|
3833
|
+
#: src/lib/components/data-input/default-relation-input.tsx:618
|
|
3738
3834
|
msgid "Select {0}"
|
|
3739
3835
|
msgstr "Wybierz {0}"
|
|
3740
3836
|
|
|
@@ -3744,7 +3840,7 @@ msgid "Select {0} Items"
|
|
|
3744
3840
|
msgstr "Wybierz {0} pozycji"
|
|
3745
3841
|
|
|
3746
3842
|
#. placeholder {0}: entityName.toLowerCase()
|
|
3747
|
-
#: src/lib/components/data-input/default-relation-input.tsx:
|
|
3843
|
+
#: src/lib/components/data-input/default-relation-input.tsx:605
|
|
3748
3844
|
msgid "Select {0}s"
|
|
3749
3845
|
msgstr "Wybierz {0}"
|
|
3750
3846
|
|
|
@@ -3879,7 +3975,7 @@ msgstr "Zamówienia sprzedawcy"
|
|
|
3879
3975
|
msgid "Sellers"
|
|
3880
3976
|
msgstr "Sprzedawcy"
|
|
3881
3977
|
|
|
3882
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
3978
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:398
|
|
3883
3979
|
msgid "Set custom fields"
|
|
3884
3980
|
msgstr "Ustaw pola niestandardowe"
|
|
3885
3981
|
|
|
@@ -3891,16 +3987,16 @@ msgstr "Ustaw punkt ogniskowy"
|
|
|
3891
3987
|
msgid "Set link"
|
|
3892
3988
|
msgstr "Ustaw link"
|
|
3893
3989
|
|
|
3894
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
3990
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:114
|
|
3895
3991
|
msgid "Sets the languages that are available for all channels. Individual channels can then support a subset of these languages."
|
|
3896
3992
|
msgstr "Ustawia języki dostępne dla wszystkich kanałów. Poszczególne kanały mogą następnie obsługiwać podzbiór tych języków."
|
|
3897
3993
|
|
|
3898
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
3994
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:133
|
|
3899
3995
|
msgid "Sets the stock level at which this a variant is considered to be out of stock. Using a negative value enables backorder support. Can be overridden by product variants."
|
|
3900
3996
|
msgstr "Ustawia poziom magazynowy, przy którym ten wariant jest uważany za niedostępny. Użycie wartości ujemnej umożliwia obsługę zamówień wstecznych. Może zostać zastąpiony przez warianty produktu."
|
|
3901
3997
|
|
|
3902
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3903
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
3998
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:354
|
|
3999
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:372
|
|
3904
4000
|
msgid "Sets the stock level at which this variant is considered to be out of stock. Using a negative value enables backorder support."
|
|
3905
4001
|
msgstr "Ustawia poziom magazynowy, przy którym ten wariant jest uważany za niedostępny. Użycie wartości ujemnej umożliwia obsługę zamówień wstecznych."
|
|
3906
4002
|
|
|
@@ -3914,34 +4010,34 @@ msgstr "Rozlicz płatność"
|
|
|
3914
4010
|
msgid "Settle refund"
|
|
3915
4011
|
msgstr "Rozlicz zwrot"
|
|
3916
4012
|
|
|
3917
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4013
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:61
|
|
3918
4014
|
#: src/app/routes/_authenticated/_orders/orders.tsx:83
|
|
3919
4015
|
msgid "Shipping"
|
|
3920
4016
|
msgstr "Wysyłka"
|
|
3921
4017
|
|
|
3922
4018
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:259
|
|
3923
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
3924
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4019
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:234
|
|
4020
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:418
|
|
3925
4021
|
msgid "Shipping address"
|
|
3926
4022
|
msgstr "Adres wysyłki"
|
|
3927
4023
|
|
|
3928
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4024
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:143
|
|
3929
4025
|
msgid "Shipping Address"
|
|
3930
4026
|
msgstr "Adres wysyłki"
|
|
3931
4027
|
|
|
3932
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4028
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:110
|
|
3933
4029
|
msgid "Shipping address changed"
|
|
3934
4030
|
msgstr "Zmieniono adres wysyłki"
|
|
3935
4031
|
|
|
3936
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4032
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:181
|
|
3937
4033
|
msgid "Shipping address set for order"
|
|
3938
4034
|
msgstr "Adres dostawy ustawiony dla zamówienia"
|
|
3939
4035
|
|
|
3940
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4036
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:197
|
|
3941
4037
|
msgid "Shipping address unset for order"
|
|
3942
4038
|
msgstr "Adres dostawy usunięty dla zamówienia"
|
|
3943
4039
|
|
|
3944
|
-
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:
|
|
4040
|
+
#: src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx:124
|
|
3945
4041
|
msgid "Shipping method changed"
|
|
3946
4042
|
msgstr "Zmieniono metodę wysyłki"
|
|
3947
4043
|
|
|
@@ -3953,13 +4049,13 @@ msgstr "Metoda wysyłki kwalifikuje się do tego zamówienia"
|
|
|
3953
4049
|
msgid "Shipping method is not eligible for this order"
|
|
3954
4050
|
msgstr "Metoda wysyłki nie kwalifikuje się do tego zamówienia"
|
|
3955
4051
|
|
|
3956
|
-
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:
|
|
4052
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:216
|
|
3957
4053
|
msgid "Shipping method set for order"
|
|
3958
4054
|
msgstr "Metoda dostawy ustawiona dla zamówienia"
|
|
3959
4055
|
|
|
3960
4056
|
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:43
|
|
3961
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
3962
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:
|
|
4057
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:20
|
|
4058
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx:29
|
|
3963
4059
|
msgid "Shipping Methods"
|
|
3964
4060
|
msgstr "Metody wysyłki"
|
|
3965
4061
|
|
|
@@ -3972,7 +4068,16 @@ msgstr "Data krótka"
|
|
|
3972
4068
|
msgid "Showing all {0} results"
|
|
3973
4069
|
msgstr "Wyświetlanie wszystkich {0} wyników"
|
|
3974
4070
|
|
|
3975
|
-
#: src/
|
|
4071
|
+
#: src/lib/components/login/login-form.tsx:108
|
|
4072
|
+
msgid "Sign in"
|
|
4073
|
+
msgstr "Zaloguj się"
|
|
4074
|
+
|
|
4075
|
+
#: src/lib/components/login/login-form.tsx:68
|
|
4076
|
+
msgid "Sign in to access the admin dashboard"
|
|
4077
|
+
msgstr "Zaloguj się, aby uzyskać dostęp do panelu administracyjnego"
|
|
4078
|
+
|
|
4079
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:96
|
|
4080
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:244
|
|
3976
4081
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:334
|
|
3977
4082
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:195
|
|
3978
4083
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:206
|
|
@@ -4001,7 +4106,7 @@ msgstr "Niektóre zasoby są niedostępne"
|
|
|
4001
4106
|
msgid "Source"
|
|
4002
4107
|
msgstr "Źródło"
|
|
4003
4108
|
|
|
4004
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4109
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:175
|
|
4005
4110
|
msgid "Starts at"
|
|
4006
4111
|
msgstr "Data rozpoczęcia"
|
|
4007
4112
|
|
|
@@ -4012,7 +4117,7 @@ msgstr "Data rozpoczęcia"
|
|
|
4012
4117
|
msgid "State"
|
|
4013
4118
|
msgstr "Stan"
|
|
4014
4119
|
|
|
4015
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4120
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:202
|
|
4016
4121
|
msgid "State / Province"
|
|
4017
4122
|
msgstr "Stan / Województwo"
|
|
4018
4123
|
|
|
@@ -4026,7 +4131,7 @@ msgstr "Stan/Województwo"
|
|
|
4026
4131
|
msgid "Status"
|
|
4027
4132
|
msgstr "Status"
|
|
4028
4133
|
|
|
4029
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4134
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:315
|
|
4030
4135
|
msgid "Stock"
|
|
4031
4136
|
msgstr "Magazyn"
|
|
4032
4137
|
|
|
@@ -4034,12 +4139,12 @@ msgstr "Magazyn"
|
|
|
4034
4139
|
msgid "Stock allocated"
|
|
4035
4140
|
msgstr "Przydzielono stan magazynowy"
|
|
4036
4141
|
|
|
4037
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4142
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:395
|
|
4038
4143
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:353
|
|
4039
4144
|
msgid "Stock level"
|
|
4040
4145
|
msgstr "Poziom magazynowy"
|
|
4041
4146
|
|
|
4042
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4147
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:320
|
|
4043
4148
|
msgid "Stock levels"
|
|
4044
4149
|
msgstr "Poziomy magazynowe"
|
|
4045
4150
|
|
|
@@ -4058,20 +4163,20 @@ msgid "Stock on Hand"
|
|
|
4058
4163
|
msgstr "Stan magazynowy"
|
|
4059
4164
|
|
|
4060
4165
|
#: src/app/routes/_authenticated/_customers/components/customer-address-form.tsx:146
|
|
4061
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4166
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:175
|
|
4062
4167
|
#: src/lib/components/shared/customer-address-form.tsx:137
|
|
4063
4168
|
msgid "Street Address"
|
|
4064
4169
|
msgstr "Ulica"
|
|
4065
4170
|
|
|
4066
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:
|
|
4171
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-address-form.tsx:182
|
|
4067
4172
|
msgid "Street Address 2"
|
|
4068
4173
|
msgstr "Ulica 2"
|
|
4069
4174
|
|
|
4070
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4175
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:49
|
|
4071
4176
|
msgid "Sub total"
|
|
4072
4177
|
msgstr "Suma częściowa"
|
|
4073
4178
|
|
|
4074
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
4179
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:220
|
|
4075
4180
|
msgid "Subtotal"
|
|
4076
4181
|
msgstr "Suma częściowa"
|
|
4077
4182
|
|
|
@@ -4087,6 +4192,10 @@ msgstr "Pomyślnie dodano płatność do zamówienia"
|
|
|
4087
4192
|
msgid "Successfully assigned {entityIdsLength} {entityType} to channel"
|
|
4088
4193
|
msgstr "Pomyślnie przypisano {entityIdsLength} {entityType} do kanału"
|
|
4089
4194
|
|
|
4195
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:79
|
|
4196
|
+
msgid "Successfully created administrator"
|
|
4197
|
+
msgstr "Pomyślnie utworzono administratora"
|
|
4198
|
+
|
|
4090
4199
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:85
|
|
4091
4200
|
msgid "Successfully created channel"
|
|
4092
4201
|
msgstr "Pomyślnie utworzono kanał"
|
|
@@ -4127,6 +4236,10 @@ msgstr "Pomyślnie utworzono metodę płatności"
|
|
|
4127
4236
|
msgid "Successfully created product"
|
|
4128
4237
|
msgstr "Pomyślnie utworzono produkt"
|
|
4129
4238
|
|
|
4239
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:128
|
|
4240
|
+
msgid "Successfully created product option"
|
|
4241
|
+
msgstr "Pomyślnie utworzono opcję produktu"
|
|
4242
|
+
|
|
4130
4243
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:106
|
|
4131
4244
|
msgid "Successfully created product option group"
|
|
4132
4245
|
msgstr "Pomyślnie utworzono grupę opcji produktu"
|
|
@@ -4135,12 +4248,12 @@ msgstr "Pomyślnie utworzono grupę opcji produktu"
|
|
|
4135
4248
|
msgid "Successfully created product options"
|
|
4136
4249
|
msgstr "Pomyślnie utworzono opcje produktu"
|
|
4137
4250
|
|
|
4138
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4251
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:116
|
|
4139
4252
|
#: src/app/routes/_authenticated/_products/components/add-product-variant-dialog.tsx:169
|
|
4140
4253
|
msgid "Successfully created product variant"
|
|
4141
4254
|
msgstr "Pomyślnie utworzono wariant produktu"
|
|
4142
4255
|
|
|
4143
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4256
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:104
|
|
4144
4257
|
msgid "Successfully created promotion"
|
|
4145
4258
|
msgstr "Pomyślnie utworzono promocję"
|
|
4146
4259
|
|
|
@@ -4152,6 +4265,10 @@ msgstr "Pomyślnie utworzono rolę"
|
|
|
4152
4265
|
msgid "Successfully created seller"
|
|
4153
4266
|
msgstr "Pomyślnie utworzono sprzedawcę"
|
|
4154
4267
|
|
|
4268
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:90
|
|
4269
|
+
msgid "Successfully created shipping method"
|
|
4270
|
+
msgstr "Pomyślnie utworzono metodę wysyłki"
|
|
4271
|
+
|
|
4155
4272
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:69
|
|
4156
4273
|
msgid "Successfully created stock location"
|
|
4157
4274
|
msgstr "Pomyślnie utworzono lokalizację magazynową"
|
|
@@ -4184,6 +4301,10 @@ msgstr "Pomyślnie usunięto {selectionLength} {entityType} z kanału"
|
|
|
4184
4301
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4185
4302
|
msgstr "Pomyślnie usunięto {successCount} aspektów z kanału"
|
|
4186
4303
|
|
|
4304
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4305
|
+
msgid "Successfully updated administrator"
|
|
4306
|
+
msgstr "Pomyślnie zaktualizowano administratora"
|
|
4307
|
+
|
|
4187
4308
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:70
|
|
4188
4309
|
msgid "Successfully updated asset"
|
|
4189
4310
|
msgstr "Pomyślnie zaktualizowano zasób"
|
|
@@ -4220,12 +4341,12 @@ msgstr "Pomyślnie zaktualizowano wartość aspektu"
|
|
|
4220
4341
|
msgid "Successfully updated facet values for {entityIdsLength} {entityType}"
|
|
4221
4342
|
msgstr "Pomyślnie zaktualizowano wartości aspektów dla {entityIdsLength} {entityType}"
|
|
4222
4343
|
|
|
4223
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4344
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:71
|
|
4224
4345
|
msgid "Successfully updated global settings"
|
|
4225
4346
|
msgstr "Pomyślnie zaktualizowano ustawienia globalne"
|
|
4226
4347
|
|
|
4227
4348
|
#: src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx:85
|
|
4228
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4349
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:55
|
|
4229
4350
|
msgid "Successfully updated order"
|
|
4230
4351
|
msgstr "Pomyślnie zaktualizowano zamówienie"
|
|
4231
4352
|
|
|
@@ -4237,11 +4358,15 @@ msgstr "Pomyślnie zaktualizowano metodę płatności"
|
|
|
4237
4358
|
msgid "Successfully updated product"
|
|
4238
4359
|
msgstr "Pomyślnie zaktualizowano produkt"
|
|
4239
4360
|
|
|
4361
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:129
|
|
4362
|
+
msgid "Successfully updated product option"
|
|
4363
|
+
msgstr "Pomyślnie zaktualizowano opcję produktu"
|
|
4364
|
+
|
|
4240
4365
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:107
|
|
4241
4366
|
msgid "Successfully updated product option group"
|
|
4242
4367
|
msgstr "Pomyślnie zaktualizowano grupę opcji produktu"
|
|
4243
4368
|
|
|
4244
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4369
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:117
|
|
4245
4370
|
msgid "Successfully updated product variant"
|
|
4246
4371
|
msgstr "Pomyślnie zaktualizowano wariant produktu"
|
|
4247
4372
|
|
|
@@ -4249,7 +4374,7 @@ msgstr "Pomyślnie zaktualizowano wariant produktu"
|
|
|
4249
4374
|
msgid "Successfully updated profile"
|
|
4250
4375
|
msgstr "Pomyślnie zaktualizowano profil"
|
|
4251
4376
|
|
|
4252
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4377
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:104
|
|
4253
4378
|
msgid "Successfully updated promotion"
|
|
4254
4379
|
msgstr "Pomyślnie zaktualizowano promocję"
|
|
4255
4380
|
|
|
@@ -4261,6 +4386,10 @@ msgstr "Pomyślnie zaktualizowano rolę"
|
|
|
4261
4386
|
msgid "Successfully updated seller"
|
|
4262
4387
|
msgstr "Pomyślnie zaktualizowano sprzedawcę"
|
|
4263
4388
|
|
|
4389
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:91
|
|
4390
|
+
msgid "Successfully updated shipping method"
|
|
4391
|
+
msgstr "Pomyślnie zaktualizowano metodę wysyłki"
|
|
4392
|
+
|
|
4264
4393
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:70
|
|
4265
4394
|
msgid "Successfully updated stock location"
|
|
4266
4395
|
msgstr "Pomyślnie zaktualizowano lokalizację magazynową"
|
|
@@ -4277,7 +4406,7 @@ msgstr "Pomyślnie zaktualizowano stawkę podatkową"
|
|
|
4277
4406
|
msgid "Successfully updated zone"
|
|
4278
4407
|
msgstr "Pomyślnie zaktualizowano strefę"
|
|
4279
4408
|
|
|
4280
|
-
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:
|
|
4409
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:187
|
|
4281
4410
|
msgid "Summary of modifications"
|
|
4282
4411
|
msgstr "Podsumowanie modyfikacji"
|
|
4283
4412
|
|
|
@@ -4285,11 +4414,11 @@ msgstr "Podsumowanie modyfikacji"
|
|
|
4285
4414
|
msgid "Super Admin"
|
|
4286
4415
|
msgstr "Superadministrator"
|
|
4287
4416
|
|
|
4288
|
-
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:
|
|
4417
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:19
|
|
4289
4418
|
msgid "Surcharge"
|
|
4290
4419
|
msgstr "Dopłata"
|
|
4291
4420
|
|
|
4292
|
-
#: src/lib/components/layout/nav-user.tsx:
|
|
4421
|
+
#: src/lib/components/layout/nav-user.tsx:139
|
|
4293
4422
|
msgctxt "theme"
|
|
4294
4423
|
msgid "System"
|
|
4295
4424
|
msgstr "System"
|
|
@@ -4308,7 +4437,7 @@ msgstr "Podstawa opodatkowania"
|
|
|
4308
4437
|
msgid "Tax Categories"
|
|
4309
4438
|
msgstr "Kategorie podatkowe"
|
|
4310
4439
|
|
|
4311
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4440
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:256
|
|
4312
4441
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:136
|
|
4313
4442
|
msgid "Tax category"
|
|
4314
4443
|
msgstr "Kategoria podatkowa"
|
|
@@ -4344,7 +4473,7 @@ msgstr "Test"
|
|
|
4344
4473
|
msgid "Test data has been updated. Click \"Run Test\" to see updated results."
|
|
4345
4474
|
msgstr "Zaktualizowano dane testowe. Kliknij „Uruchom test\", aby zobaczyć zaktualizowane wyniki."
|
|
4346
4475
|
|
|
4347
|
-
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:
|
|
4476
|
+
#: src/app/routes/_authenticated/_shipping-methods/components/test-order-builder.tsx:164
|
|
4348
4477
|
msgid "Test Order"
|
|
4349
4478
|
msgstr "Zamówienie testowe"
|
|
4350
4479
|
|
|
@@ -4394,7 +4523,11 @@ msgstr "Wybrane uprawnienia zostaną zastosowane do tych kanałów."
|
|
|
4394
4523
|
msgid "The token is used to specify the channel when making API requests."
|
|
4395
4524
|
msgstr "Token służy do określenia kanału podczas wykonywania żądań API."
|
|
4396
4525
|
|
|
4397
|
-
#: src/
|
|
4526
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:116
|
|
4527
|
+
msgid "The variant could not be added. Ensure the parent product is enabled."
|
|
4528
|
+
msgstr "Nie można dodać wariantu. Upewnij się, że produkt nadrzędny jest włączony."
|
|
4529
|
+
|
|
4530
|
+
#: src/lib/components/layout/nav-user.tsx:121
|
|
4398
4531
|
msgid "Theme"
|
|
4399
4532
|
msgstr "Motyw"
|
|
4400
4533
|
|
|
@@ -4463,10 +4596,11 @@ msgstr "Przełącz wiersz nagłówka"
|
|
|
4463
4596
|
msgid "Token"
|
|
4464
4597
|
msgstr "Token"
|
|
4465
4598
|
|
|
4466
|
-
#: src/app/routes/_authenticated/_orders/components/order-table
|
|
4467
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
4599
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:154
|
|
4600
|
+
#: src/app/routes/_authenticated/_orders/components/order-table-totals.tsx:73
|
|
4601
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:114
|
|
4468
4602
|
#: src/app/routes/_authenticated/_orders/components/payment-details.tsx:228
|
|
4469
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
4603
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:98
|
|
4470
4604
|
msgid "Total"
|
|
4471
4605
|
msgstr "Suma"
|
|
4472
4606
|
|
|
@@ -4482,11 +4616,11 @@ msgstr "Suma zwrotu:"
|
|
|
4482
4616
|
msgid "Total Revenue"
|
|
4483
4617
|
msgstr "Łączny przychód"
|
|
4484
4618
|
|
|
4485
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4619
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:340
|
|
4486
4620
|
msgid "Track"
|
|
4487
4621
|
msgstr "Śledź"
|
|
4488
4622
|
|
|
4489
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4623
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:144
|
|
4490
4624
|
msgid "Track inventory by default"
|
|
4491
4625
|
msgstr "Domyślnie śledź stan magazynowy"
|
|
4492
4626
|
|
|
@@ -4526,11 +4660,12 @@ msgstr "Przejdź do wybranego stanu"
|
|
|
4526
4660
|
msgid "True"
|
|
4527
4661
|
msgstr "Prawda"
|
|
4528
4662
|
|
|
4529
|
-
#: src/lib/components/shared/facet-value-selector.tsx:
|
|
4663
|
+
#: src/lib/components/shared/facet-value-selector.tsx:328
|
|
4530
4664
|
msgid "Type at least 2 characters to search..."
|
|
4531
4665
|
msgstr "Wpisz co najmniej 2 znaki, aby wyszukać..."
|
|
4532
4666
|
|
|
4533
|
-
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:
|
|
4667
|
+
#: src/app/routes/_authenticated/_orders/components/edit-order-table.tsx:100
|
|
4668
|
+
#: src/app/routes/_authenticated/_orders/components/order-table.tsx:57
|
|
4534
4669
|
msgid "Unit price"
|
|
4535
4670
|
msgstr "Cena jednostkowa"
|
|
4536
4671
|
|
|
@@ -4547,7 +4682,7 @@ msgstr "Nieznany błąd"
|
|
|
4547
4682
|
msgid "Unverified"
|
|
4548
4683
|
msgstr "Niezweryfikowany"
|
|
4549
4684
|
|
|
4550
|
-
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:
|
|
4685
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:108
|
|
4551
4686
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:101
|
|
4552
4687
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:125
|
|
4553
4688
|
#: src/app/routes/_authenticated/_collections/collections_.$id.tsx:124
|
|
@@ -4556,24 +4691,24 @@ msgstr "Niezweryfikowany"
|
|
|
4556
4691
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:155
|
|
4557
4692
|
#: src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx:112
|
|
4558
4693
|
#: src/app/routes/_authenticated/_facets/facets_.$id.tsx:102
|
|
4559
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4694
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:101
|
|
4560
4695
|
#: src/app/routes/_authenticated/_orders/components/order-line-custom-fields-form.tsx:46
|
|
4561
4696
|
#: src/app/routes/_authenticated/_payment-methods/payment-methods_.$id.tsx:130
|
|
4562
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4697
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:215
|
|
4563
4698
|
#: src/app/routes/_authenticated/_products/components/assign-facet-values-dialog.tsx:276
|
|
4564
4699
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:111
|
|
4565
4700
|
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$id.tsx:138
|
|
4566
|
-
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:
|
|
4701
|
+
#: src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx:159
|
|
4567
4702
|
#: src/app/routes/_authenticated/_profile/profile.tsx:82
|
|
4568
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4703
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:136
|
|
4569
4704
|
#: src/app/routes/_authenticated/_roles/roles_.$id.tsx:87
|
|
4570
4705
|
#: src/app/routes/_authenticated/_sellers/sellers_.$id.tsx:81
|
|
4571
|
-
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:
|
|
4706
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:126
|
|
4572
4707
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:99
|
|
4573
4708
|
#: src/app/routes/_authenticated/_tax-categories/tax-categories_.$id.tsx:98
|
|
4574
4709
|
#: src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx:95
|
|
4575
4710
|
#: src/app/routes/_authenticated/_zones/zones_.$id.tsx:85
|
|
4576
|
-
#: src/lib/framework/page/detail-page.tsx:
|
|
4711
|
+
#: src/lib/framework/page/detail-page.tsx:202
|
|
4577
4712
|
msgid "Update"
|
|
4578
4713
|
msgstr "Zaktualizuj"
|
|
4579
4714
|
|
|
@@ -4581,7 +4716,7 @@ msgstr "Zaktualizuj"
|
|
|
4581
4716
|
msgid "Update the note content or visibility"
|
|
4582
4717
|
msgstr "Zaktualizuj zawartość lub widoczność notatki"
|
|
4583
4718
|
|
|
4584
|
-
#: src/lib/framework/layout-engine/page-layout.tsx:
|
|
4719
|
+
#: src/lib/framework/layout-engine/page-layout.tsx:417
|
|
4585
4720
|
msgid "Updated"
|
|
4586
4721
|
msgstr "Zaktualizowano"
|
|
4587
4722
|
|
|
@@ -4589,7 +4724,7 @@ msgstr "Zaktualizowano"
|
|
|
4589
4724
|
msgid "Upload"
|
|
4590
4725
|
msgstr "Prześlij"
|
|
4591
4726
|
|
|
4592
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4727
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:213
|
|
4593
4728
|
msgid "Usage limit"
|
|
4594
4729
|
msgstr "Limit użycia"
|
|
4595
4730
|
|
|
@@ -4603,14 +4738,10 @@ msgstr "Użyj jako domyślny adres rozliczeniowy"
|
|
|
4603
4738
|
msgid "Use as the default shipping address"
|
|
4604
4739
|
msgstr "Użyj jako domyślny adres wysyłki"
|
|
4605
4740
|
|
|
4606
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4741
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:370
|
|
4607
4742
|
msgid "Use global out-of-stock threshold"
|
|
4608
4743
|
msgstr "Użyj globalnego progu braku w magazynie"
|
|
4609
4744
|
|
|
4610
|
-
#: src/lib/components/login/login-form.tsx:112
|
|
4611
|
-
msgid "Username"
|
|
4612
|
-
msgstr "Nazwa użytkownika"
|
|
4613
|
-
|
|
4614
4745
|
#: src/lib/framework/dashboard-widget/base-widget.tsx:19
|
|
4615
4746
|
msgid "useWidgetDimensions must be used within a DashboardBaseWidget"
|
|
4616
4747
|
msgstr "useWidgetDimensions musi być używane wewnątrz DashboardBaseWidget"
|
|
@@ -4710,16 +4841,16 @@ msgstr "Widoczne tylko dla administratorów"
|
|
|
4710
4841
|
msgid "Visible to customer"
|
|
4711
4842
|
msgstr "Widoczne dla klienta"
|
|
4712
4843
|
|
|
4713
|
-
#: src/lib/components/login/login-form.tsx:
|
|
4714
|
-
msgid "Welcome
|
|
4715
|
-
msgstr "Witamy
|
|
4844
|
+
#: src/lib/components/login/login-form.tsx:65
|
|
4845
|
+
msgid "Welcome to Vendure"
|
|
4846
|
+
msgstr "Witamy w Vendure"
|
|
4716
4847
|
|
|
4717
|
-
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:
|
|
4848
|
+
#: src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx:226
|
|
4718
4849
|
#: src/app/routes/_authenticated/_products/products_.$id.tsx:122
|
|
4719
4850
|
msgid "When enabled, a product is available in the shop"
|
|
4720
4851
|
msgstr "Po włączeniu produkt jest dostępny w sklepie"
|
|
4721
4852
|
|
|
4722
|
-
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:
|
|
4853
|
+
#: src/app/routes/_authenticated/_promotions/promotions_.$id.tsx:147
|
|
4723
4854
|
msgid "When enabled, a promotion is available in the shop"
|
|
4724
4855
|
msgstr "Po włączeniu promocja jest dostępna w sklepie"
|
|
4725
4856
|
|
|
@@ -4727,7 +4858,7 @@ msgstr "Po włączeniu promocja jest dostępna w sklepie"
|
|
|
4727
4858
|
msgid "When this is enabled, the prices entered in the product catalog will be included in the tax for the default tax zone."
|
|
4728
4859
|
msgstr "Gdy to jest włączone, ceny wprowadzone w katalogu produktów będą zawierać podatek dla domyślnej strefy podatkowej."
|
|
4729
4860
|
|
|
4730
|
-
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:
|
|
4861
|
+
#: src/app/routes/_authenticated/_global-settings/global-settings.tsx:146
|
|
4731
4862
|
msgid "When tracked, product variant stock levels will be automatically adjusted when sold. This setting can be overridden by individual product variants."
|
|
4732
4863
|
msgstr "Po włączeniu śledzenia poziomy magazynowe wariantów produktów będą automatycznie dostosowywane podczas sprzedaży. To ustawienie może zostać zastąpione przez poszczególne warianty produktów."
|
|
4733
4864
|
|
|
@@ -4757,7 +4888,7 @@ msgstr "Nie masz uprawnień do wyświetlania globalnych ustawień języka"
|
|
|
4757
4888
|
msgid "You haven't saved any views yet."
|
|
4758
4889
|
msgstr "Nie zapisałeś jeszcze żadnych widoków."
|
|
4759
4890
|
|
|
4760
|
-
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:
|
|
4891
|
+
#: src/lib/framework/dashboard-widget/latest-orders-widget/index.tsx:58
|
|
4761
4892
|
msgid "Your latest orders"
|
|
4762
4893
|
msgstr "Twoje ostatnie zamówienia"
|
|
4763
4894
|
|