@vendure/dashboard 3.5.0-minor-202510031341 → 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/plugin/default-page.html +1 -1
- package/dist/vite/utils/ast-utils.spec.js +3 -3
- package/dist/vite/utils/tsconfig-utils.js +2 -1
- 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 +18 -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/_global-settings/global-settings.tsx +4 -8
- package/src/app/routes/_authenticated/_global-settings/utils/global-languages.ts +268 -0
- package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +117 -92
- package/src/app/routes/_authenticated/_orders/components/order-address.tsx +15 -15
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +5 -5
- 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/_product-variants/components/add-currency-dropdown.tsx +49 -0
- package/src/app/routes/_authenticated/_product-variants/components/add-stock-location-dropdown.tsx +56 -0
- package/src/app/routes/_authenticated/_product-variants/product-variants.graphql.ts +12 -0
- package/src/app/routes/_authenticated/_product-variants/product-variants_.$id.tsx +178 -50
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_products/components/product-variants-table.tsx +0 -11
- 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 +3 -10
- 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/customer-group-input.tsx +0 -1
- 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/money-input.tsx +7 -11
- package/src/lib/components/data-input/number-input.stories.tsx +103 -0
- package/src/lib/components/data-input/number-input.tsx +16 -5
- 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 +28 -14
- 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 +39 -11
- 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/generated-breadcrumbs.tsx +4 -12
- 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/configurable-operation-input.tsx +1 -1
- 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/latest-orders-widget/index.tsx +0 -2
- 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/layout.ts +41 -1
- package/src/lib/framework/extension-api/types/login.ts +0 -21
- package/src/lib/framework/form-engine/value-transformers.ts +8 -1
- package/src/lib/framework/layout-engine/custom-form-page.stories.tsx +344 -0
- package/src/lib/framework/layout-engine/page-layout.tsx +69 -57
- 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/detail-page.tsx +12 -15
- 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/channel-provider.tsx +1 -0
- package/src/lib/providers/theme-provider.tsx +6 -3
package/src/i18n/locales/ar.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 "خطأ في توسيع الاستعلام"
|
|
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 "ستستمر الصفحة بالاستعلام الافتراضي."
|
|
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 "خطأ في توسيع الاستعلام:"
|
|
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 "خطأ في توسيع الاستعلام"
|
|
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 "ستستمر الصفحة بالاستعلام الافتراضي."
|
|
52
|
+
|
|
53
|
+
#. js-lingui-explicit-id
|
|
54
|
+
#: src/lib/framework/defaults.ts:24
|
|
55
55
|
msgid "Insights"
|
|
56
56
|
msgstr "الرؤى"
|
|
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 "الكتالوج"
|
|
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 "المنتجات"
|
|
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 "أشكال المنتجات"
|
|
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 "الخصائص"
|
|
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 "المجموعات"
|
|
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 "الملفات"
|
|
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 "المبيعات"
|
|
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 "الطلبات"
|
|
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 "العملاء"
|
|
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 "مجموعات العملاء"
|
|
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 "التسويق"
|
|
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 "العروض الترويجية"
|
|
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 "النظام"
|
|
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 "قائمة انتظار المهام"
|
|
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 "فحوصات الصحة"
|
|
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 "المهام المجدولة"
|
|
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 "الإعدادات"
|
|
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 "البائعون"
|
|
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 "القنوات"
|
|
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 "مواقع المخزون"
|
|
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 "المسؤولون"
|
|
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 "الأدوار"
|
|
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 "طرق الشحن"
|
|
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 "طرق الدفع"
|
|
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 "فئات الضرائب"
|
|
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 "معدلات الضرائب"
|
|
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 "البلدان"
|
|
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 "المناطق"
|
|
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 "الإعدادات العامة"
|
|
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 "أداة المقاييس"
|
|
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 "أداة أحدث الطلبات"
|
|
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 "أداة ملخص الطلبات"
|
|
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 "تشغيل تحديثات فهرس البحث المعلقة"
|
|
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} محدد"
|
|
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} متغير"
|
|
768
773
|
|
|
@@ -790,10 +795,14 @@ msgstr "{title}"
|
|
|
790
795
|
msgid "+ {0} more"
|
|
791
796
|
msgstr "+ {0} المزيد"
|
|
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} المزيد"
|
|
796
801
|
|
|
802
|
+
#: src/lib/components/login/login-form.tsx:111
|
|
803
|
+
#~ msgid "<0>Forgot password?</0><1>Request reset</1>"
|
|
804
|
+
#~ msgstr "<0>نسيت كلمة المرور؟</0><1>طلب إعادة التعيين</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 "مطلوب استرداد بقيمة {formattedDiff}. حدد مبالغ الدفع وأدخل ملاحظة للمتابعة."
|
|
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 "الإجراءات"
|
|
810
819
|
|
|
@@ -826,6 +835,10 @@ msgstr "إضافة دفعة يدوية بقيمة {0}"
|
|
|
826
835
|
msgid "Add a new address to the customer."
|
|
827
836
|
msgstr "أضف عنوانًا جديدًا للعميل."
|
|
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 "إضافة سعر بعملة أخرى"
|
|
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 "إضافة مجموعة خيارات أخرى"
|
|
@@ -846,7 +859,7 @@ msgstr "إضافة عمود قبل"
|
|
|
846
859
|
msgid "Add Country"
|
|
847
860
|
msgstr "إضافة بلد"
|
|
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 "إضافة رمز قسيمة"
|
|
852
865
|
|
|
@@ -863,7 +876,7 @@ msgstr "إضافة مجموعات عملاء"
|
|
|
863
876
|
msgid "Add facet value"
|
|
864
877
|
msgstr "إضافة قيمة خاصية"
|
|
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 "إضافة قيم الخصائص"
|
|
869
882
|
|
|
@@ -935,7 +948,7 @@ msgstr "أضف خيارات المنتج أولاً"
|
|
|
935
948
|
msgid "Add product variant"
|
|
936
949
|
msgstr "إضافة شكل منتج"
|
|
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 "أضف منتجات لإنشاء طلب تجريبي"
|
|
941
954
|
|
|
@@ -947,6 +960,10 @@ msgstr "إضافة صف بعد"
|
|
|
947
960
|
msgid "Add row before"
|
|
948
961
|
msgstr "إضافة صف قبل"
|
|
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 "إضافة مستوى المخزون لموقع آخر"
|
|
966
|
+
|
|
950
967
|
#: src/app/routes/_authenticated/_products/components/create-product-variants.tsx:179
|
|
951
968
|
msgid "Add Stock to Location"
|
|
952
969
|
msgstr "إضافة مخزون إلى الموقع"
|
|
@@ -960,7 +977,7 @@ msgstr "إضافة علامات..."
|
|
|
960
977
|
msgid "Add variant"
|
|
961
978
|
msgstr "إضافة شكل"
|
|
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 "رموز قسائم مضافة"
|
|
966
983
|
|
|
@@ -969,7 +986,7 @@ msgid "Added to group"
|
|
|
969
986
|
msgstr "تمت الإضافة إلى المجموعة"
|
|
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 "إضافة {0} عنصر"
|
|
975
992
|
|
|
@@ -1005,12 +1022,12 @@ msgid "Address updated successfully"
|
|
|
1005
1022
|
msgstr "تم تحديث العنوان بنجاح"
|
|
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 "العناوين"
|
|
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 "تعديل {0} بند"
|
|
1016
1033
|
|
|
@@ -1028,7 +1045,7 @@ msgstr "بعد"
|
|
|
1028
1045
|
msgid "All resources are up and running"
|
|
1029
1046
|
msgstr "جميع الموارد تعمل بشكل جيد"
|
|
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 "مخصص"
|
|
1034
1051
|
|
|
@@ -1061,7 +1078,7 @@ msgstr "تم تطبيق العرض \"{viewName}\""
|
|
|
1061
1078
|
msgid "Apply"
|
|
1062
1079
|
msgstr "تطبيق"
|
|
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 "تطبيق الفلتر"
|
|
1067
1084
|
|
|
@@ -1082,7 +1099,7 @@ msgstr "هل أنت متأكد من حذف {selectionLength} ملف؟"
|
|
|
1082
1099
|
msgid "Are you sure you want to delete this address?"
|
|
1083
1100
|
msgstr "هل أنت متأكد من حذف هذا العنوان؟"
|
|
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 "هل أنت متأكد من حذف طلب المسودة هذا؟"
|
|
1088
1105
|
|
|
@@ -1090,7 +1107,7 @@ msgstr "هل أنت متأكد من حذف طلب المسودة هذا؟"
|
|
|
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 "هل أنت متأكد من حذف هذا العرض العام؟ لا يمكن التراجع عن هذا الإجراء وسيؤثر على جميع المستخدمين."
|
|
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 "هل أنت متأكد من حذف هذا العنصر؟ لا يمكن التراجع عن هذا الإجراء."
|
|
1096
1113
|
|
|
@@ -1115,7 +1132,7 @@ msgstr "هل أنت متأكد من إزالة {0} {entityType} من القنا
|
|
|
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 "الملفات"
|
|
@@ -1146,7 +1163,7 @@ msgid "Available currencies"
|
|
|
1146
1163
|
msgstr "العملات المتاحة"
|
|
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 "اللغات المتاحة"
|
|
1152
1169
|
|
|
@@ -1162,7 +1179,7 @@ msgstr "متاح:"
|
|
|
1162
1179
|
msgid "Average Order Value"
|
|
1163
1180
|
msgstr "متوسط قيمة الطلب"
|
|
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 "العودة إلى البحث"
|
|
1168
1185
|
|
|
@@ -1175,25 +1192,30 @@ msgid "between"
|
|
|
1175
1192
|
msgstr "بين"
|
|
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 "عنوان الفوترة"
|
|
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 "تم تغيير عنوان الفوترة"
|
|
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 "تم تعيين عنوان الفوترة للطلب"
|
|
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 "تم إلغاء عنوان الفوترة من الطلب"
|
|
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 "تصفح الفئات"
|
|
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 "الحاسبة"
|
|
1199
1221
|
|
|
@@ -1208,7 +1230,7 @@ msgstr "الحاسبة"
|
|
|
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 "إلغاء"
|
|
|
1226
1248
|
msgid "Cancel Job"
|
|
1227
1249
|
msgstr "إلغاء المهمة"
|
|
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 "إلغاء التعديل"
|
|
1232
1254
|
|
|
@@ -1259,7 +1281,7 @@ msgid "Channels"
|
|
|
1259
1281
|
msgstr "القنوات"
|
|
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 "المدينة"
|
|
@@ -1269,11 +1291,11 @@ msgid "Clear"
|
|
|
1269
1291
|
msgstr "مسح"
|
|
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 "مسح الكل"
|
|
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 "مسح الفلتر"
|
|
1279
1301
|
|
|
@@ -1292,10 +1314,10 @@ msgstr "انقر على \"تشغيل الاختبار\" لاختبار طريق
|
|
|
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 "الرمز"
|
|
1301
1323
|
|
|
@@ -1304,8 +1326,8 @@ msgid "Collection contents for {collectionName}"
|
|
|
1304
1326
|
msgstr "محتويات المجموعة {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 "المجموعات"
|
|
1311
1333
|
|
|
@@ -1318,17 +1340,17 @@ msgid "Column settings"
|
|
|
1318
1340
|
msgstr "إعدادات الأعمدة"
|
|
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 "الشركة"
|
|
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 "إكمال المسودة"
|
|
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 "الشروط"
|
|
1334
1356
|
|
|
@@ -1345,7 +1367,7 @@ msgstr "تأكيد"
|
|
|
1345
1367
|
msgid "Confirm Action"
|
|
1346
1368
|
msgstr "تأكيد الإجراء"
|
|
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 "تأكيد الحذف"
|
|
1351
1373
|
|
|
@@ -1358,7 +1380,7 @@ msgid "contains"
|
|
|
1358
1380
|
msgstr "يحتوي على"
|
|
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 "المحتويات"
|
|
1364
1386
|
|
|
@@ -1379,24 +1401,24 @@ msgid "Countries"
|
|
|
1379
1401
|
msgstr "البلدان"
|
|
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 "البلد"
|
|
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 "رمز القسيمة"
|
|
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 "تم حذف رمز القسيمة من الطلب"
|
|
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 "تم تعيين رمز القسيمة للطلب"
|
|
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 "تم تعيين رمز القسيمة للطلب"
|
|
|
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 "إنشاء أشكال لمنتجك"
|
|
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 "تم الإنشاء"
|
|
1459
1481
|
|
|
@@ -1479,7 +1501,7 @@ msgstr "قيم الخصائص الحالية"
|
|
|
1479
1501
|
msgid "Current status"
|
|
1480
1502
|
msgstr "الحالة الحالية"
|
|
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 "الحقول المخصصة"
|
|
1485
1507
|
|
|
@@ -1487,13 +1509,13 @@ msgstr "الحقول المخصصة"
|
|
|
1487
1509
|
msgid "Custom Fields"
|
|
1488
1510
|
msgstr "الحقول المخصصة"
|
|
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 "تم تغيير الحقول المخصصة"
|
|
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 "العميل"
|
|
@@ -1537,7 +1559,7 @@ msgstr "لم يتم العثور على العميل"
|
|
|
1537
1559
|
msgid "Customer registered"
|
|
1538
1560
|
msgstr "تم تسجيل العميل"
|
|
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 "تم تعيين العميل للطلب"
|
|
1543
1565
|
|
|
@@ -1556,7 +1578,7 @@ msgstr "تم التحقق من العميل"
|
|
|
1556
1578
|
msgid "Customers"
|
|
1557
1579
|
msgstr "العملاء"
|
|
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 "داكن"
|
|
@@ -1598,8 +1620,8 @@ msgstr "المنطقة الضريبية الافتراضية"
|
|
|
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 "حذف العنوان"
|
|
|
1613
1635
|
msgid "Delete column"
|
|
1614
1636
|
msgstr "حذف العمود"
|
|
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 "حذف المسودة"
|
|
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 "حذف طلب المسودة"
|
|
1623
1645
|
|
|
@@ -1641,7 +1663,7 @@ msgstr "تم حذف {deleted} {entityName}"
|
|
|
1641
1663
|
msgid "Deleted {selectionLength} assets"
|
|
1642
1664
|
msgstr "تم حذف {selectionLength} ملف"
|
|
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 "تم الحذف بنجاح"
|
|
1647
1669
|
|
|
@@ -1649,9 +1671,9 @@ msgstr "تم الحذف بنجاح"
|
|
|
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 "الوصف (نص بديل)"
|
|
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 "وضع التطوير"
|
|
1668
1690
|
|
|
@@ -1672,11 +1694,11 @@ msgstr "تعطيل"
|
|
|
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 "معطل"
|
|
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 "الخصم"
|
|
1682
1704
|
|
|
@@ -1684,7 +1706,7 @@ msgstr "الخصم"
|
|
|
1684
1706
|
msgid "Display language"
|
|
1685
1707
|
msgstr "لغة العرض"
|
|
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 "عدم التتبع"
|
|
1690
1712
|
|
|
@@ -1692,16 +1714,16 @@ msgstr "عدم التتبع"
|
|
|
1692
1714
|
msgid "does not contain"
|
|
1693
1715
|
msgstr "لا يحتوي على"
|
|
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 "طلب مسودة"
|
|
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 "اكتمل طلب المسودة"
|
|
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 "تم حذف طلب المسودة"
|
|
1707
1729
|
|
|
@@ -1738,9 +1760,9 @@ msgstr "مثل صغير"
|
|
|
1738
1760
|
msgid "e.g., Red, Large, Cotton"
|
|
1739
1761
|
msgstr "مثل أحمر، كبير، قطن"
|
|
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 "تحرير"
|
|
@@ -1792,11 +1814,15 @@ msgstr "تحرير الرابط المختصر يدويًا"
|
|
|
1792
1814
|
msgid "Edit the address details below."
|
|
1793
1815
|
msgstr "قم بتحرير تفاصيل العنوان أدناه."
|
|
1794
1816
|
|
|
1817
|
+
#: src/lib/components/login/login-form.tsx:83
|
|
1818
|
+
msgid "Email"
|
|
1819
|
+
msgstr "البريد الإلكتروني"
|
|
1820
|
+
|
|
1795
1821
|
#: src/app/routes/_authenticated/_customers/customers_.$id.tsx:185
|
|
1796
1822
|
msgid "Email address"
|
|
1797
1823
|
msgstr "عنوان البريد الإلكتروني"
|
|
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 "عنوان البريد الإلكتروني أو المعرف"
|
|
@@ -1815,20 +1841,20 @@ msgstr "تمكين"
|
|
|
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 "ممكّن"
|
|
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 "ينتهي في"
|
|
1834
1860
|
|
|
@@ -1848,7 +1874,7 @@ msgstr "أدخل معرف المعاملة لتسوية الاسترداد هذ
|
|
|
1848
1874
|
msgid "Enter transaction ID"
|
|
1849
1875
|
msgstr "أدخل معرف المعاملة"
|
|
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 "معلومات الكيان"
|
|
1854
1880
|
|
|
@@ -1894,7 +1920,7 @@ msgstr "كل 60 ثانية"
|
|
|
1894
1920
|
msgid "ex. tax:"
|
|
1895
1921
|
msgstr "بدون ضريبة:"
|
|
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 "استكشف الإصدار المؤسسي"
|
|
1900
1926
|
|
|
@@ -1903,7 +1929,7 @@ msgid "Facet"
|
|
|
1903
1929
|
msgstr "الخاصية"
|
|
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 "قيم الخصائص"
|
|
1909
1935
|
|
|
@@ -1919,7 +1945,7 @@ msgstr "قيم الخصائص لـ {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 "الخصائص"
|
|
1925
1951
|
|
|
@@ -1955,6 +1981,10 @@ msgstr "فشل تحويل العرض إلى عام"
|
|
|
1955
1981
|
msgid "Failed to create address"
|
|
1956
1982
|
msgstr "فشل إنشاء العنوان"
|
|
1957
1983
|
|
|
1984
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
1985
|
+
msgid "Failed to create administrator"
|
|
1986
|
+
msgstr "فشل في إنشاء المسؤول"
|
|
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 "فشل إنشاء طريقة الدفع"
|
|
|
1997
2027
|
msgid "Failed to create product"
|
|
1998
2028
|
msgstr "فشل إنشاء المنتج"
|
|
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 "فشل إنشاء خيار المنتج"
|
|
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 "فشل إنشاء مجموعة خيارات المنتج"
|
|
@@ -2006,13 +2040,13 @@ msgstr "فشل إنشاء مجموعة خيارات المنتج"
|
|
|
2006
2040
|
msgid "Failed to create product options"
|
|
2007
2041
|
msgstr "فشل إنشاء خيارات المنتج"
|
|
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 "فشل إنشاء شكل المنتج"
|
|
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 "فشل إنشاء العرض الترويجي"
|
|
2018
2052
|
|
|
@@ -2024,6 +2058,10 @@ msgstr "فشل إنشاء الدور"
|
|
|
2024
2058
|
msgid "Failed to create seller"
|
|
2025
2059
|
msgstr "فشل إنشاء البائع"
|
|
2026
2060
|
|
|
2061
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2062
|
+
msgid "Failed to create shipping method"
|
|
2063
|
+
msgstr "فشل إنشاء طريقة الشحن"
|
|
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 "فشل إنشاء موقع المخزون"
|
|
@@ -2040,8 +2078,8 @@ msgstr "فشل إنشاء معدل الضريبة"
|
|
|
2040
2078
|
msgid "Failed to create zone"
|
|
2041
2079
|
msgstr "فشل إنشاء المنطقة"
|
|
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 "فشل الحذف"
|
|
2047
2085
|
|
|
@@ -2129,6 +2167,10 @@ msgstr "فشل نقل الطلب إلى الحالة"
|
|
|
2129
2167
|
msgid "Failed to update address"
|
|
2130
2168
|
msgstr "فشل تحديث العنوان"
|
|
2131
2169
|
|
|
2170
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:88
|
|
2171
|
+
msgid "Failed to update administrator"
|
|
2172
|
+
msgstr "فشل في تحديث المسؤول"
|
|
2173
|
+
|
|
2132
2174
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:74
|
|
2133
2175
|
msgid "Failed to update asset"
|
|
2134
2176
|
msgstr "فشل تحديث الملف"
|
|
@@ -2168,13 +2210,13 @@ msgstr "فشل تحديث قيمة الخاصية"
|
|
|
2168
2210
|
msgid "Failed to update fulfillment state"
|
|
2169
2211
|
msgstr "فشل تحديث حالة التنفيذ"
|
|
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 "فشل تحديث الإعدادات العامة"
|
|
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 "فشل تحديث الطلب"
|
|
2180
2222
|
|
|
@@ -2191,11 +2233,15 @@ msgstr "فشل تحديث حالة الدفع"
|
|
|
2191
2233
|
msgid "Failed to update product"
|
|
2192
2234
|
msgstr "فشل تحديث المنتج"
|
|
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 "فشل تحديث خيار المنتج"
|
|
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 "فشل تحديث مجموعة خيارات المنتج"
|
|
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 "فشل تحديث شكل المنتج"
|
|
2201
2247
|
|
|
@@ -2203,8 +2249,8 @@ msgstr "فشل تحديث شكل المنتج"
|
|
|
2203
2249
|
msgid "Failed to update profile"
|
|
2204
2250
|
msgstr "فشل تحديث الملف الشخصي"
|
|
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 "فشل تحديث العرض الترويجي"
|
|
2210
2256
|
|
|
@@ -2216,6 +2262,10 @@ msgstr "فشل تحديث الدور"
|
|
|
2216
2262
|
msgid "Failed to update seller"
|
|
2217
2263
|
msgstr "فشل تحديث البائع"
|
|
2218
2264
|
|
|
2265
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:100
|
|
2266
|
+
msgid "Failed to update shipping method"
|
|
2267
|
+
msgstr "فشل تحديث طريقة الشحن"
|
|
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 "فشل تحديث موقع المخزون"
|
|
@@ -2236,7 +2286,7 @@ msgstr "فشل تحديث المنطقة"
|
|
|
2236
2286
|
msgid "False"
|
|
2237
2287
|
msgstr "خطأ"
|
|
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 "تصفية حسب {columnId}"
|
|
2242
2292
|
|
|
@@ -2248,7 +2298,7 @@ msgstr "تصفية حسب اسم المجموعة"
|
|
|
2248
2298
|
msgid "Filter by tags"
|
|
2249
2299
|
msgstr "تصفية حسب العلامات"
|
|
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 "تصفية..."
|
|
2254
2304
|
|
|
@@ -2256,7 +2306,7 @@ msgstr "تصفية..."
|
|
|
2256
2306
|
msgid "Filters"
|
|
2257
2307
|
msgstr "الفلاتر"
|
|
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 "تفاصيل التنفيذ"
|
|
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 "معالج التنفيذ"
|
|
2320
2370
|
|
|
@@ -2331,7 +2381,7 @@ msgid "Fulfillment transitioned"
|
|
|
2331
2381
|
msgstr "تم نقل التنفيذ"
|
|
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 "الاسم الكامل"
|
|
@@ -2349,12 +2399,12 @@ msgstr "إنشاء الرابط المختصر تلقائيًا"
|
|
|
2349
2399
|
msgid "Global Languages"
|
|
2350
2400
|
msgstr "اللغات العامة"
|
|
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 "حد نفاد المخزون العام"
|
|
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 "الإعدادات العامة"
|
|
2360
2410
|
|
|
@@ -2374,6 +2424,22 @@ msgstr "تم نسخ العرض العام بنجاح"
|
|
|
2374
2424
|
msgid "Global view renamed successfully"
|
|
2375
2425
|
msgstr "تمت إعادة تسمية العرض العام بنجاح"
|
|
2376
2426
|
|
|
2427
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:58
|
|
2428
|
+
msgid "Go to first page"
|
|
2429
|
+
msgstr "الانتقال إلى الصفحة الأولى"
|
|
2430
|
+
|
|
2431
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:95
|
|
2432
|
+
msgid "Go to last page"
|
|
2433
|
+
msgstr "الانتقال إلى الصفحة الأخيرة"
|
|
2434
|
+
|
|
2435
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:83
|
|
2436
|
+
msgid "Go to next page"
|
|
2437
|
+
msgstr "الانتقال إلى الصفحة التالية"
|
|
2438
|
+
|
|
2439
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:70
|
|
2440
|
+
msgid "Go to previous page"
|
|
2441
|
+
msgstr "الانتقال إلى الصفحة السابقة"
|
|
2442
|
+
|
|
2377
2443
|
#: src/lib/components/data-table/human-readable-operator.tsx:40
|
|
2378
2444
|
msgid "greater than"
|
|
2379
2445
|
msgstr "أكبر من"
|
|
@@ -2426,7 +2492,7 @@ msgstr "الارتفاع"
|
|
|
2426
2492
|
msgid "ID"
|
|
2427
2493
|
msgstr "المعرف"
|
|
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 "المعرف"
|
|
2432
2498
|
|
|
@@ -2446,7 +2512,7 @@ msgstr "في"
|
|
|
2446
2512
|
msgid "Inherit filters"
|
|
2447
2513
|
msgstr "وراثة الفلاتر"
|
|
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 "الوراثة من الإعدادات العامة"
|
|
2452
2518
|
|
|
@@ -2515,7 +2581,7 @@ msgstr "ليس في"
|
|
|
2515
2581
|
msgid "is null"
|
|
2516
2582
|
msgstr "فارغ"
|
|
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 "تمت إضافة عنصر إلى الطلب"
|
|
2521
2587
|
|
|
@@ -2524,7 +2590,7 @@ msgstr "تمت إضافة عنصر إلى الطلب"
|
|
|
2524
2590
|
msgid "Job Queue"
|
|
2525
2591
|
msgstr "قائمة انتظار المهام"
|
|
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 "اللغة"
|
|
2530
2596
|
|
|
@@ -2552,7 +2618,7 @@ msgctxt "date-range"
|
|
|
2552
2618
|
msgid "Last month"
|
|
2553
2619
|
msgstr "الشهر الماضي"
|
|
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 "آخر نتيجة"
|
|
|
2567
2633
|
msgid "Last updated {0}"
|
|
2568
2634
|
msgstr "آخر تحديث {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 "أحدث الطلبات"
|
|
2573
2639
|
|
|
@@ -2579,7 +2645,7 @@ msgstr "أصغر من"
|
|
|
2579
2645
|
msgid "less than or equal"
|
|
2580
2646
|
msgstr "أصغر من أو يساوي"
|
|
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 "فاتح"
|
|
@@ -2625,8 +2691,9 @@ msgstr "جارٍ تحميل العلامات..."
|
|
|
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 "جارٍ التحميل..."
|
|
@@ -2635,7 +2702,7 @@ msgstr "جارٍ التحميل..."
|
|
|
2635
2702
|
msgid "Locale"
|
|
2636
2703
|
msgstr "اللغة المحلية"
|
|
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 "تسجيل الخروج"
|
|
2641
2708
|
|
|
@@ -2706,7 +2773,7 @@ msgstr "المقاييس"
|
|
|
2706
2773
|
msgid "Modify"
|
|
2707
2774
|
msgstr "تعديل"
|
|
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 "تعديل الطلب"
|
|
2712
2779
|
|
|
@@ -2747,7 +2814,7 @@ msgstr "نقل {0} مجموعة إلى {2}"
|
|
|
2747
2814
|
msgid "Moving..."
|
|
2748
2815
|
msgstr "جارٍ النقل..."
|
|
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 "عروضي المحفوظة"
|
|
2753
2820
|
|
|
@@ -2755,11 +2822,11 @@ msgstr "عروضي المحفوظة"
|
|
|
2755
2822
|
msgid "My Saved Views"
|
|
2756
2823
|
msgstr "عروضي المحفوظة"
|
|
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 "عروضي المحفوظة"
|
|
|
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 "أبدًا"
|
|
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 "مسؤول جديد"
|
|
2790
2857
|
|
|
@@ -2806,7 +2873,7 @@ msgstr "قناة جديدة"
|
|
|
2806
2873
|
msgid "New collection"
|
|
2807
2874
|
msgstr "مجموعة جديدة"
|
|
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 "مجموعة جديدة"
|
|
2812
2879
|
|
|
@@ -2820,7 +2887,7 @@ msgstr "بلد جديد"
|
|
|
2820
2887
|
msgid "New customer"
|
|
2821
2888
|
msgstr "عميل جديد"
|
|
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 "عميل جديد"
|
|
2826
2893
|
|
|
@@ -2864,7 +2931,7 @@ msgstr "خيار جديد"
|
|
|
2864
2931
|
msgid "New payment method"
|
|
2865
2932
|
msgstr "طريقة دفع جديدة"
|
|
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 "طريقة دفع جديدة"
|
|
2870
2937
|
|
|
@@ -2873,11 +2940,11 @@ msgstr "طريقة دفع جديدة"
|
|
|
2873
2940
|
msgid "New product"
|
|
2874
2941
|
msgstr "منتج جديد"
|
|
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 "منتج جديد"
|
|
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 "خيار منتج جديد"
|
|
2883
2950
|
|
|
@@ -2885,16 +2952,16 @@ msgstr "خيار منتج جديد"
|
|
|
2885
2952
|
msgid "New product option group"
|
|
2886
2953
|
msgstr "مجموعة خيارات منتج جديدة"
|
|
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 "شكل منتج جديد"
|
|
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 "عرض ترويجي جديد"
|
|
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 "عرض ترويجي جديد"
|
|
2900
2967
|
|
|
@@ -2917,11 +2984,11 @@ msgid "New Seller"
|
|
|
2917
2984
|
msgstr "بائع جديد"
|
|
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 "طريقة شحن جديدة"
|
|
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 "طريقة شحن جديدة"
|
|
2927
2994
|
|
|
@@ -2982,7 +3049,11 @@ msgstr "لا يوجد عنوان"
|
|
|
2982
3049
|
msgid "No addresses found"
|
|
2983
3050
|
msgstr "لم يتم العثور على عناوين"
|
|
2984
3051
|
|
|
2985
|
-
#: src/
|
|
3052
|
+
#: src/lib/components/shared/alerts.tsx:43
|
|
3053
|
+
msgid "No alerts"
|
|
3054
|
+
msgstr "لا توجد تنبيهات"
|
|
3055
|
+
|
|
3056
|
+
#: src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx:280
|
|
2986
3057
|
msgid "No billing address"
|
|
2987
3058
|
msgstr "لا يوجد عنوان فوترة"
|
|
2988
3059
|
|
|
@@ -2991,7 +3062,7 @@ msgid "No countries found"
|
|
|
2991
3062
|
msgstr "لم يتم العثور على بلدان"
|
|
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 "لا يوجد عميل"
|
|
2997
3068
|
|
|
@@ -3031,12 +3102,16 @@ msgstr "لم يتم العثور على عناصر"
|
|
|
3031
3102
|
msgid "No items selected"
|
|
3032
3103
|
msgstr "لم يتم تحديد عناصر"
|
|
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 "لم يتم إجراء تعديلات"
|
|
3037
3108
|
|
|
3109
|
+
#: src/lib/components/shared/facet-value-selector.tsx:425
|
|
3110
|
+
msgid "No more facets"
|
|
3111
|
+
msgstr "لا توجد فئات أخرى"
|
|
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 "لا توجد عناصر أخرى"
|
|
3042
3117
|
|
|
@@ -3057,12 +3132,13 @@ msgstr "لا يلزم دفع أو استرداد"
|
|
|
3057
3132
|
msgid "No result yet"
|
|
3058
3133
|
msgstr "لا توجد نتيجة بعد"
|
|
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 "لا توجد نتائج"
|
|
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 "لم يتم العثور على نتائج"
|
|
3068
3144
|
|
|
@@ -3070,7 +3146,7 @@ msgstr "لم يتم العثور على نتائج"
|
|
|
3070
3146
|
msgid "No sellers found"
|
|
3071
3147
|
msgstr "لم يتم العثور على بائعين"
|
|
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 "لا يوجد عنوان شحن"
|
|
3076
3152
|
|
|
@@ -3187,6 +3263,10 @@ msgstr "تم إلغاء الطلب"
|
|
|
3187
3263
|
msgid "Order Count"
|
|
3188
3264
|
msgstr "عدد الطلبات"
|
|
3189
3265
|
|
|
3266
|
+
#: src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx:89
|
|
3267
|
+
msgid "Order custom fields updated"
|
|
3268
|
+
msgstr "تم تحديث الحقول المخصصة للطلب"
|
|
3269
|
+
|
|
3190
3270
|
#: src/app/routes/_authenticated/_orders/components/order-history/order-history-utils.tsx:90
|
|
3191
3271
|
msgid "Order delivered"
|
|
3192
3272
|
msgstr "تم تسليم الطلب"
|
|
@@ -3200,16 +3280,16 @@ msgstr "تم تنفيذ الطلب"
|
|
|
3200
3280
|
msgid "Order history"
|
|
3201
3281
|
msgstr "سجل الطلب"
|
|
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 "تمت إزالة بند الطلب"
|
|
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 "تم تحديث بند الطلب"
|
|
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 "بنود الطلب"
|
|
3215
3295
|
|
|
@@ -3261,13 +3341,19 @@ msgstr "الطلبات"
|
|
|
3261
3341
|
msgid "Orders Summary"
|
|
3262
3342
|
msgstr "ملخص الطلبات"
|
|
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 "حد نفاد المخزون"
|
|
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 "الصفحة {0} من {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 "كلمة المرور"
|
|
3273
3359
|
|
|
@@ -3326,8 +3412,8 @@ msgid "Payment method is required"
|
|
|
3326
3412
|
msgstr "طريقة الدفع مطلوبة"
|
|
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 "طرق الدفع"
|
|
3333
3419
|
|
|
@@ -3347,7 +3433,7 @@ msgstr "تم تحديث حالة الدفع بنجاح"
|
|
|
3347
3433
|
msgid "Payment transitioned"
|
|
3348
3434
|
msgstr "تم نقل الدفع"
|
|
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 "حد الاستخدام لكل عميل"
|
|
3353
3439
|
|
|
@@ -3360,12 +3446,12 @@ msgid "Phone number"
|
|
|
3360
3446
|
msgstr "رقم الهاتف"
|
|
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 "رقم الهاتف"
|
|
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 "تاريخ الطلب"
|
|
3371
3457
|
|
|
@@ -3378,12 +3464,12 @@ msgid "Please select a target collection"
|
|
|
3378
3464
|
msgstr "يرجى تحديد مجموعة مستهدفة"
|
|
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 "الرمز البريدي"
|
|
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 "معاينة التغييرات"
|
|
3389
3475
|
|
|
@@ -3392,14 +3478,14 @@ msgid "Preview order modifications"
|
|
|
3392
3478
|
msgstr "معاينة تعديلات الطلب"
|
|
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 "السعر"
|
|
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 "السعر والضريبة"
|
|
3405
3491
|
|
|
@@ -3428,16 +3514,17 @@ msgstr "المجموعات الخاصة غير مرئية في المتجر"
|
|
|
3428
3514
|
msgid "Private facets are not visible in the shop"
|
|
3429
3515
|
msgstr "الخصائص الخاصة غير مرئية في المتجر"
|
|
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 "المنتج"
|
|
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 "اسم المنتج"
|
|
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 "مجموعة خيارات المنتج"
|
|
3443
3530
|
|
|
@@ -3450,31 +3537,31 @@ msgstr "خيارات المنتج"
|
|
|
3450
3537
|
msgid "Product Options"
|
|
3451
3538
|
msgstr "خيارات المنتج"
|
|
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 "أشكال المنتجات"
|
|
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 "المنتجات"
|
|
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 "الملف الشخصي"
|
|
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 "العروض الترويجية"
|
|
3480
3567
|
|
|
@@ -3482,8 +3569,9 @@ msgstr "العروض الترويجية"
|
|
|
3482
3569
|
msgid "public"
|
|
3483
3570
|
msgstr "عام"
|
|
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 "الكمية"
|
|
3489
3577
|
|
|
@@ -3499,7 +3587,7 @@ msgstr "المعدل"
|
|
|
3499
3587
|
msgid "Reason"
|
|
3500
3588
|
msgstr "السبب"
|
|
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 "إعادة بناء فهرس البحث"
|
|
3505
3593
|
|
|
@@ -3563,7 +3651,7 @@ msgstr "مسجل"
|
|
|
3563
3651
|
msgid "Remaining:"
|
|
3564
3652
|
msgstr "المتبقي:"
|
|
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 "إزالة"
|
|
3569
3657
|
|
|
@@ -3583,7 +3671,7 @@ msgstr "إزالة العنصر"
|
|
|
3583
3671
|
msgid "Remove link"
|
|
3584
3672
|
msgstr "إزالة الرابط"
|
|
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 "رموز قسائم محذوفة"
|
|
3589
3677
|
|
|
@@ -3592,7 +3680,7 @@ msgid "Removed from group"
|
|
|
3592
3680
|
msgstr "تمت الإزالة من المجموعة"
|
|
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 "إزالة {0} عنصر"
|
|
3598
3686
|
|
|
@@ -3608,14 +3696,18 @@ msgstr "إعادة تعيين"
|
|
|
3608
3696
|
msgid "Review the changes before applying them to the order."
|
|
3609
3697
|
msgstr "راجع التغييرات قبل تطبيقها على الطلب."
|
|
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 "الأدوار"
|
|
3618
3706
|
|
|
3707
|
+
#: src/lib/components/data-table/data-table-pagination.tsx:22
|
|
3708
|
+
msgid "Rows per page"
|
|
3709
|
+
msgstr "صفوف لكل صفحة"
|
|
3710
|
+
|
|
3619
3711
|
#: src/app/routes/_authenticated/_system/scheduled-tasks.tsx:210
|
|
3620
3712
|
msgid "Run"
|
|
3621
3713
|
msgstr "تشغيل"
|
|
@@ -3669,7 +3761,7 @@ msgstr "حفظ التخطيط"
|
|
|
3669
3761
|
msgid "Save option group"
|
|
3670
3762
|
msgstr "حفظ مجموعة الخيارات"
|
|
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 "حفظ العرض"
|
|
3675
3767
|
|
|
@@ -3711,11 +3803,15 @@ msgstr "بحث في القنوات..."
|
|
|
3711
3803
|
msgid "Search currencies..."
|
|
3712
3804
|
msgstr "بحث في العملات..."
|
|
3713
3805
|
|
|
3714
|
-
#: src/
|
|
3806
|
+
#: src/lib/components/shared/facet-value-selector.tsx:304
|
|
3807
|
+
msgid "Search facet values..."
|
|
3808
|
+
msgstr "البحث في قيم الفئات..."
|
|
3809
|
+
|
|
3810
|
+
#: src/app/routes/_authenticated/_products/products.tsx:35
|
|
3715
3811
|
msgid "Search index rebuild could not be started"
|
|
3716
3812
|
msgstr "تعذر بدء إعادة بناء فهرس البحث"
|
|
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 "بدأت إعادة بناء فهرس البحث"
|
|
3721
3817
|
|
|
@@ -3734,7 +3830,7 @@ msgstr "بحث في الأدوار..."
|
|
|
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 "تحديد {0}"
|
|
3740
3836
|
|
|
@@ -3744,7 +3840,7 @@ msgid "Select {0} Items"
|
|
|
3744
3840
|
msgstr "تحديد {0} عنصر"
|
|
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 "تحديد {0}"
|
|
3750
3846
|
|
|
@@ -3879,7 +3975,7 @@ msgstr "طلبات البائعين"
|
|
|
3879
3975
|
msgid "Sellers"
|
|
3880
3976
|
msgstr "البائعون"
|
|
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 "تعيين الحقول المخصصة"
|
|
3885
3981
|
|
|
@@ -3891,16 +3987,16 @@ msgstr "تعيين نقطة التركيز"
|
|
|
3891
3987
|
msgid "Set link"
|
|
3892
3988
|
msgstr "تعيين الرابط"
|
|
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 "يعين اللغات المتاحة لجميع القنوات. يمكن للقنوات الفردية بعد ذلك دعم مجموعة فرعية من هذه اللغات."
|
|
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 "يحدد مستوى المخزون الذي يعتبر عنده هذا الشكل نفد من المخزون. استخدام قيمة سالبة يمكّن دعم الطلب المسبق. يمكن تجاوزه بواسطة أشكال المنتج."
|
|
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 "يحدد مستوى المخزون الذي يعتبر عنده هذا الشكل نفد من المخزون. استخدام قيمة سالبة يمكّن دعم الطلب المسبق."
|
|
3906
4002
|
|
|
@@ -3914,34 +4010,34 @@ msgstr "تسوية الدفع"
|
|
|
3914
4010
|
msgid "Settle refund"
|
|
3915
4011
|
msgstr "تسوية الاسترداد"
|
|
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 "الشحن"
|
|
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 "عنوان الشحن"
|
|
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 "عنوان الشحن"
|
|
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 "تم تغيير عنوان الشحن"
|
|
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 "تم تعيين عنوان الشحن للطلب"
|
|
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 "تم إلغاء تعيين عنوان الشحن للطلب"
|
|
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 "تم تغيير طريقة الشحن"
|
|
3947
4043
|
|
|
@@ -3953,13 +4049,13 @@ msgstr "طريقة الشحن مؤهلة لهذا الطلب"
|
|
|
3953
4049
|
msgid "Shipping method is not eligible for this order"
|
|
3954
4050
|
msgstr "طريقة الشحن غير مؤهلة لهذا الطلب"
|
|
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 "تم تعيين طريقة الشحن للطلب"
|
|
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 "طرق الشحن"
|
|
3965
4061
|
|
|
@@ -3972,7 +4068,16 @@ msgstr "تاريخ قصير"
|
|
|
3972
4068
|
msgid "Showing all {0} results"
|
|
3973
4069
|
msgstr "عرض جميع النتائج {0}"
|
|
3974
4070
|
|
|
3975
|
-
#: src/
|
|
4071
|
+
#: src/lib/components/login/login-form.tsx:108
|
|
4072
|
+
msgid "Sign in"
|
|
4073
|
+
msgstr "تسجيل الدخول"
|
|
4074
|
+
|
|
4075
|
+
#: src/lib/components/login/login-form.tsx:68
|
|
4076
|
+
msgid "Sign in to access the admin dashboard"
|
|
4077
|
+
msgstr "سجل الدخول للوصول إلى لوحة تحكم المسؤول"
|
|
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 "بعض الموارد معطلة"
|
|
|
4001
4106
|
msgid "Source"
|
|
4002
4107
|
msgstr "المصدر"
|
|
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 "يبدأ في"
|
|
4007
4112
|
|
|
@@ -4012,7 +4117,7 @@ msgstr "يبدأ في"
|
|
|
4012
4117
|
msgid "State"
|
|
4013
4118
|
msgstr "الحالة"
|
|
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 "الولاية / المحافظة"
|
|
4018
4123
|
|
|
@@ -4026,7 +4131,7 @@ msgstr "الولاية/المحافظة"
|
|
|
4026
4131
|
msgid "Status"
|
|
4027
4132
|
msgstr "الحالة"
|
|
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 "المخزون"
|
|
4032
4137
|
|
|
@@ -4034,12 +4139,12 @@ msgstr "المخزون"
|
|
|
4034
4139
|
msgid "Stock allocated"
|
|
4035
4140
|
msgstr "مخزون مخصص"
|
|
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 "مستوى المخزون"
|
|
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 "مستويات المخزون"
|
|
4045
4150
|
|
|
@@ -4058,20 +4163,20 @@ msgid "Stock on Hand"
|
|
|
4058
4163
|
msgstr "المخزون المتاح"
|
|
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 "عنوان الشارع"
|
|
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 "عنوان الشارع 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 "المجموع الفرعي"
|
|
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 "المجموع الفرعي"
|
|
4077
4182
|
|
|
@@ -4087,6 +4192,10 @@ msgstr "تمت إضافة الدفع إلى الطلب بنجاح"
|
|
|
4087
4192
|
msgid "Successfully assigned {entityIdsLength} {entityType} to channel"
|
|
4088
4193
|
msgstr "تم تعيين {entityIdsLength} {entityType} إلى القناة بنجاح"
|
|
4089
4194
|
|
|
4195
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:79
|
|
4196
|
+
msgid "Successfully created administrator"
|
|
4197
|
+
msgstr "تم إنشاء المسؤول بنجاح"
|
|
4198
|
+
|
|
4090
4199
|
#: src/app/routes/_authenticated/_channels/channels_.$id.tsx:85
|
|
4091
4200
|
msgid "Successfully created channel"
|
|
4092
4201
|
msgstr "تم إنشاء القناة بنجاح"
|
|
@@ -4127,6 +4236,10 @@ msgstr "تم إنشاء طريقة الدفع بنجاح"
|
|
|
4127
4236
|
msgid "Successfully created product"
|
|
4128
4237
|
msgstr "تم إنشاء المنتج بنجاح"
|
|
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 "تم إنشاء خيار المنتج بنجاح"
|
|
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 "تم إنشاء مجموعة خيارات المنتج بنجاح"
|
|
@@ -4135,12 +4248,12 @@ msgstr "تم إنشاء مجموعة خيارات المنتج بنجاح"
|
|
|
4135
4248
|
msgid "Successfully created product options"
|
|
4136
4249
|
msgstr "تم إنشاء خيارات المنتج بنجاح"
|
|
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 "تم إنشاء شكل المنتج بنجاح"
|
|
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 "تم إنشاء العرض الترويجي بنجاح"
|
|
4146
4259
|
|
|
@@ -4152,6 +4265,10 @@ msgstr "تم إنشاء الدور بنجاح"
|
|
|
4152
4265
|
msgid "Successfully created seller"
|
|
4153
4266
|
msgstr "تم إنشاء البائع بنجاح"
|
|
4154
4267
|
|
|
4268
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:90
|
|
4269
|
+
msgid "Successfully created shipping method"
|
|
4270
|
+
msgstr "تم إنشاء طريقة الشحن بنجاح"
|
|
4271
|
+
|
|
4155
4272
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:69
|
|
4156
4273
|
msgid "Successfully created stock location"
|
|
4157
4274
|
msgstr "تم إنشاء موقع المخزون بنجاح"
|
|
@@ -4184,6 +4301,10 @@ msgstr "تمت إزالة {selectionLength} {entityType} من القناة بن
|
|
|
4184
4301
|
msgid "Successfully removed {successCount} facets from channel"
|
|
4185
4302
|
msgstr "تمت إزالة {successCount} خاصية من القناة بنجاح"
|
|
4186
4303
|
|
|
4304
|
+
#: src/app/routes/_authenticated/_administrators/administrators_.$id.tsx:80
|
|
4305
|
+
msgid "Successfully updated administrator"
|
|
4306
|
+
msgstr "تم تحديث المسؤول بنجاح"
|
|
4307
|
+
|
|
4187
4308
|
#: src/app/routes/_authenticated/_assets/assets_.$id.tsx:70
|
|
4188
4309
|
msgid "Successfully updated asset"
|
|
4189
4310
|
msgstr "تم تحديث الملف بنجاح"
|
|
@@ -4220,12 +4341,12 @@ msgstr "تم تحديث قيمة الخاصية بنجاح"
|
|
|
4220
4341
|
msgid "Successfully updated facet values for {entityIdsLength} {entityType}"
|
|
4221
4342
|
msgstr "تم تحديث قيم الخصائص لـ {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 "تم تحديث الإعدادات العامة بنجاح"
|
|
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 "تم تحديث الطلب بنجاح"
|
|
4231
4352
|
|
|
@@ -4237,11 +4358,15 @@ msgstr "تم تحديث طريقة الدفع بنجاح"
|
|
|
4237
4358
|
msgid "Successfully updated product"
|
|
4238
4359
|
msgstr "تم تحديث المنتج بنجاح"
|
|
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 "تم تحديث خيار المنتج بنجاح"
|
|
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 "تم تحديث مجموعة خيارات المنتج بنجاح"
|
|
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 "تم تحديث شكل المنتج بنجاح"
|
|
4247
4372
|
|
|
@@ -4249,7 +4374,7 @@ msgstr "تم تحديث شكل المنتج بنجاح"
|
|
|
4249
4374
|
msgid "Successfully updated profile"
|
|
4250
4375
|
msgstr "تم تحديث الملف الشخصي بنجاح"
|
|
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 "تم تحديث العرض الترويجي بنجاح"
|
|
4255
4380
|
|
|
@@ -4261,6 +4386,10 @@ msgstr "تم تحديث الدور بنجاح"
|
|
|
4261
4386
|
msgid "Successfully updated seller"
|
|
4262
4387
|
msgstr "تم تحديث البائع بنجاح"
|
|
4263
4388
|
|
|
4389
|
+
#: src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx:91
|
|
4390
|
+
msgid "Successfully updated shipping method"
|
|
4391
|
+
msgstr "تم تحديث طريقة الشحن بنجاح"
|
|
4392
|
+
|
|
4264
4393
|
#: src/app/routes/_authenticated/_stock-locations/stock-locations_.$id.tsx:70
|
|
4265
4394
|
msgid "Successfully updated stock location"
|
|
4266
4395
|
msgstr "تم تحديث موقع المخزون بنجاح"
|
|
@@ -4277,7 +4406,7 @@ msgstr "تم تحديث معدل الضريبة بنجاح"
|
|
|
4277
4406
|
msgid "Successfully updated zone"
|
|
4278
4407
|
msgstr "تم تحديث المنطقة بنجاح"
|
|
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 "ملخص التعديلات"
|
|
4283
4412
|
|
|
@@ -4285,11 +4414,11 @@ msgstr "ملخص التعديلات"
|
|
|
4285
4414
|
msgid "Super Admin"
|
|
4286
4415
|
msgstr "مسؤول عام"
|
|
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 "رسوم إضافية"
|
|
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 "النظام"
|
|
@@ -4308,7 +4437,7 @@ msgstr "أساس الضريبة"
|
|
|
4308
4437
|
msgid "Tax Categories"
|
|
4309
4438
|
msgstr "فئات الضرائب"
|
|
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 "الفئة الضريبية"
|
|
@@ -4344,7 +4473,7 @@ msgstr "اختبار"
|
|
|
4344
4473
|
msgid "Test data has been updated. Click \"Run Test\" to see updated results."
|
|
4345
4474
|
msgstr "تم تحديث بيانات الاختبار. انقر على \"تشغيل الاختبار\" لرؤية النتائج المحدثة."
|
|
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 "طلب تجريبي"
|
|
4350
4479
|
|
|
@@ -4394,7 +4523,11 @@ msgstr "سيتم تطبيق الصلاحيات المحددة على هذه ال
|
|
|
4394
4523
|
msgid "The token is used to specify the channel when making API requests."
|
|
4395
4524
|
msgstr "يُستخدم الرمز المميز لتحديد القناة عند إجراء طلبات 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 "تعذرت إضافة المتغير. تأكد من تفعيل المنتج الأصلي."
|
|
4529
|
+
|
|
4530
|
+
#: src/lib/components/layout/nav-user.tsx:121
|
|
4398
4531
|
msgid "Theme"
|
|
4399
4532
|
msgstr "السمة"
|
|
4400
4533
|
|
|
@@ -4463,10 +4596,11 @@ msgstr "تبديل صف الرأس"
|
|
|
4463
4596
|
msgid "Token"
|
|
4464
4597
|
msgstr "الرمز المميز"
|
|
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 "الإجمالي"
|
|
4472
4606
|
|
|
@@ -4482,11 +4616,11 @@ msgstr "إجمالي الاسترداد:"
|
|
|
4482
4616
|
msgid "Total Revenue"
|
|
4483
4617
|
msgstr "إجمالي الإيرادات"
|
|
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 "تتبع"
|
|
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 "تتبع المخزون افتراضيًا"
|
|
4492
4626
|
|
|
@@ -4526,11 +4660,12 @@ msgstr "الانتقال إلى الحالة المحددة"
|
|
|
4526
4660
|
msgid "True"
|
|
4527
4661
|
msgstr "صحيح"
|
|
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 "اكتب حرفين على الأقل للبحث..."
|
|
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 "سعر الوحدة"
|
|
4536
4671
|
|
|
@@ -4547,7 +4682,7 @@ msgstr "خطأ غير معروف"
|
|
|
4547
4682
|
msgid "Unverified"
|
|
4548
4683
|
msgstr "غير مُتحقق منه"
|
|
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 "غير مُتحقق منه"
|
|
|
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 "تحديث"
|
|
4579
4714
|
|
|
@@ -4581,7 +4716,7 @@ msgstr "تحديث"
|
|
|
4581
4716
|
msgid "Update the note content or visibility"
|
|
4582
4717
|
msgstr "تحديث محتوى الملاحظة أو رؤيتها"
|
|
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 "تم التحديث"
|
|
4587
4722
|
|
|
@@ -4589,7 +4724,7 @@ msgstr "تم التحديث"
|
|
|
4589
4724
|
msgid "Upload"
|
|
4590
4725
|
msgstr "رفع"
|
|
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 "حد الاستخدام"
|
|
4595
4730
|
|
|
@@ -4603,14 +4738,10 @@ msgstr "استخدام كعنوان فوترة افتراضي"
|
|
|
4603
4738
|
msgid "Use as the default shipping address"
|
|
4604
4739
|
msgstr "استخدام كعنوان شحن افتراضي"
|
|
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 "استخدام حد نفاد المخزون العام"
|
|
4609
4744
|
|
|
4610
|
-
#: src/lib/components/login/login-form.tsx:112
|
|
4611
|
-
msgid "Username"
|
|
4612
|
-
msgstr "اسم المستخدم"
|
|
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 داخل DashboardBaseWidget"
|
|
@@ -4710,16 +4841,16 @@ msgstr "مرئي للمسؤولين فقط"
|
|
|
4710
4841
|
msgid "Visible to customer"
|
|
4711
4842
|
msgstr "مرئي للعميل"
|
|
4712
4843
|
|
|
4713
|
-
#: src/lib/components/login/login-form.tsx:
|
|
4714
|
-
msgid "Welcome
|
|
4715
|
-
msgstr "
|
|
4844
|
+
#: src/lib/components/login/login-form.tsx:65
|
|
4845
|
+
msgid "Welcome to Vendure"
|
|
4846
|
+
msgstr "مرحباً بك في 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 "عند التمكين، يصبح المنتج متاحًا في المتجر"
|
|
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 "عند التمكين، يصبح العرض الترويجي متاحًا في المتجر"
|
|
4725
4856
|
|
|
@@ -4727,7 +4858,7 @@ msgstr "عند التمكين، يصبح العرض الترويجي متاحً
|
|
|
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 "عند تمكين هذا، ستكون الأسعار المدخلة في كتالوج المنتجات شاملة للضريبة للمنطقة الضريبية الافتراضية."
|
|
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 "عند التتبع، سيتم تعديل مستويات مخزون أشكال المنتج تلقائيًا عند البيع. يمكن تجاوز هذا الإعداد بواسطة أشكال المنتج الفردية."
|
|
4733
4864
|
|
|
@@ -4757,7 +4888,7 @@ msgstr "ليس لديك إذن لعرض إعدادات اللغة العامة"
|
|
|
4757
4888
|
msgid "You haven't saved any views yet."
|
|
4758
4889
|
msgstr "لم تحفظ أي عروض بعد."
|
|
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 "أحدث طلباتك"
|
|
4763
4894
|
|