@vendure/dashboard 3.5.0-minor-202510071456 → 3.5.0-minor-202510161257
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin/dashboard.plugin.js +1 -1
- package/dist/vite/utils/ast-utils.spec.js +3 -3
- package/dist/vite/vite-plugin-hmr.d.ts +8 -0
- package/dist/vite/vite-plugin-hmr.js +34 -0
- package/dist/vite/vite-plugin-theme.js +6 -6
- package/dist/vite/vite-plugin-transform-index.js +6 -1
- package/dist/vite/vite-plugin-vendure-dashboard.d.ts +31 -4
- package/dist/vite/vite-plugin-vendure-dashboard.js +89 -34
- package/package.json +17 -5
- package/src/app/app-providers.tsx +4 -1
- package/src/app/common/map-faceted-filter-fields.ts +21 -0
- package/src/app/main.tsx +3 -1
- package/src/app/routes/_authenticated/_administrators/administrators.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_administrators/administrators.tsx +13 -3
- package/src/app/routes/_authenticated/_administrators/administrators_.$id.tsx +6 -13
- package/src/app/routes/_authenticated/_administrators/components/role-permissions-display.tsx +1 -1
- package/src/app/routes/_authenticated/_assets/assets.tsx +17 -1
- package/src/app/routes/_authenticated/_collections/collections.graphql.ts +1 -0
- package/src/app/routes/_authenticated/_collections/collections.tsx +5 -0
- package/src/app/routes/_authenticated/_collections/components/collection-bulk-actions.tsx +0 -1
- package/src/app/routes/_authenticated/_customers/customers.tsx +9 -5
- package/src/app/routes/_authenticated/_facets/components/facet-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_facets/components/facet-value-bulk-actions.tsx +16 -0
- package/src/app/routes/_authenticated/_facets/components/facet-values-table.tsx +43 -12
- package/src/app/routes/_authenticated/_facets/facets_.$facetId.values_.$id.tsx +14 -5
- package/src/app/routes/_authenticated/_orders/components/edit-order-table.tsx +117 -92
- package/src/app/routes/_authenticated/_orders/components/order-detail-shared.tsx +1 -1
- package/src/app/routes/_authenticated/_orders/components/order-modification-summary.tsx +2 -1
- package/src/app/routes/_authenticated/_orders/components/order-table-totals.tsx +26 -27
- package/src/app/routes/_authenticated/_orders/components/order-table.tsx +5 -3
- package/src/app/routes/_authenticated/_orders/components/state-transition-control.tsx +6 -9
- package/src/app/routes/_authenticated/_orders/orders.graphql.ts +17 -1
- package/src/app/routes/_authenticated/_orders/orders_.$id_.modify.tsx +48 -281
- package/src/app/routes/_authenticated/_orders/orders_.draft.$id.tsx +59 -40
- package/src/app/routes/_authenticated/_orders/utils/order-utils.ts +73 -0
- package/src/app/routes/_authenticated/_orders/utils/use-modify-order.ts +312 -0
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_payment-methods/payment-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_products/components/product-bulk-actions.tsx +0 -6
- package/src/app/routes/_authenticated/_products/products.tsx +6 -2
- package/src/app/routes/_authenticated/_products/products_.$productId.option-groups.$productOptionGroupId.options_.$id.tsx +4 -8
- package/src/app/routes/_authenticated/_promotions/components/promotion-bulk-actions.tsx +0 -10
- package/src/app/routes/_authenticated/_promotions/promotions.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_promotions/promotions.tsx +12 -0
- package/src/app/routes/_authenticated/_promotions/promotions_.$id.tsx +6 -2
- package/src/app/routes/_authenticated/_sellers/sellers.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods.tsx +4 -0
- package/src/app/routes/_authenticated/_shipping-methods/shipping-methods_.$id.tsx +4 -10
- package/src/app/routes/_authenticated/_stock-locations/stock-locations.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-categories/tax-categories.graphql.ts +2 -2
- package/src/app/routes/_authenticated/_tax-rates/tax-rates.tsx +9 -0
- package/src/app/routes/_authenticated/_tax-rates/tax-rates_.$id.tsx +1 -0
- package/src/app/routes/_authenticated/_zones/zones.graphql.ts +2 -2
- package/src/app/routes/login.tsx +2 -2
- package/src/i18n/locales/ar.po +420 -289
- package/src/i18n/locales/cs.po +420 -289
- package/src/i18n/locales/de.po +420 -289
- package/src/i18n/locales/en.po +420 -289
- package/src/i18n/locales/es.po +420 -289
- package/src/i18n/locales/fa.po +420 -289
- package/src/i18n/locales/fr.po +468 -337
- package/src/i18n/locales/he.po +420 -289
- package/src/i18n/locales/hr.po +420 -289
- package/src/i18n/locales/it.po +420 -289
- package/src/i18n/locales/ja.po +420 -289
- package/src/i18n/locales/nb.po +420 -289
- package/src/i18n/locales/ne.po +420 -289
- package/src/i18n/locales/pl.po +420 -289
- package/src/i18n/locales/pt_BR.po +420 -289
- package/src/i18n/locales/pt_PT.po +420 -289
- package/src/i18n/locales/ru.po +420 -289
- package/src/i18n/locales/sv.po +420 -289
- package/src/i18n/locales/tr.po +420 -289
- package/src/i18n/locales/uk.po +420 -289
- package/src/i18n/locales/zh_Hans.po +420 -289
- package/src/i18n/locales/zh_Hant.po +420 -289
- package/src/lib/components/data-input/affixed-input.stories.tsx +93 -0
- package/src/lib/components/data-input/affixed-input.tsx +5 -2
- package/src/lib/components/data-input/boolean-input.stories.tsx +102 -0
- package/src/lib/components/data-input/checkbox-input.stories.tsx +61 -0
- package/src/lib/components/data-input/datetime-input.stories.tsx +62 -0
- package/src/lib/components/data-input/datetime-input.tsx +27 -13
- package/src/lib/components/data-input/default-relation-input.tsx +18 -12
- package/src/lib/components/data-input/money-input.stories.tsx +88 -0
- package/src/lib/components/data-input/number-input.stories.tsx +103 -0
- package/src/lib/components/data-input/number-input.tsx +10 -4
- package/src/lib/components/data-input/password-input.stories.tsx +65 -0
- package/src/lib/components/data-input/rich-text-input.stories.tsx +92 -0
- package/src/lib/components/data-input/slug-input.stories.tsx +232 -0
- package/src/lib/components/data-input/slug-input.tsx +9 -10
- package/src/lib/components/data-input/text-input.stories.tsx +52 -0
- package/src/lib/components/data-input/textarea-input.stories.tsx +55 -0
- package/src/lib/components/data-table/add-filter-menu.tsx +6 -1
- package/src/lib/components/data-table/column-header-wrapper.tsx +106 -0
- package/src/lib/components/data-table/data-table-bulk-action-item.tsx +11 -9
- package/src/lib/components/data-table/data-table-bulk-actions.tsx +4 -4
- package/src/lib/components/data-table/data-table-column-header.tsx +17 -14
- package/src/lib/components/data-table/data-table-faceted-filter.tsx +33 -11
- package/src/lib/components/data-table/data-table-filter-badge-editable.tsx +35 -0
- package/src/lib/components/data-table/data-table-filter-badge.tsx +23 -16
- package/src/lib/components/data-table/data-table-filter-dialog.tsx +28 -8
- package/src/lib/components/data-table/data-table-pagination.tsx +23 -7
- package/src/lib/components/data-table/data-table.stories.tsx +249 -0
- package/src/lib/components/data-table/data-table.tsx +37 -9
- package/src/lib/components/data-table/filters/data-table-datetime-filter.tsx +79 -34
- package/src/lib/components/data-table/use-generated-columns.tsx +55 -27
- package/src/lib/components/layout/nav-user.tsx +19 -13
- package/src/lib/components/login/login-form.tsx +39 -123
- package/src/lib/components/shared/alerts.tsx +29 -17
- package/src/lib/components/shared/asset/asset-bulk-actions.tsx +3 -3
- package/src/lib/components/shared/asset/asset-gallery.stories.tsx +76 -0
- package/src/lib/components/shared/asset/asset-gallery.tsx +147 -113
- package/src/lib/components/shared/asset/asset-picker-dialog.stories.tsx +58 -0
- package/src/lib/components/shared/customer-group-selector.tsx +5 -2
- package/src/lib/components/shared/detail-page-button.stories.tsx +52 -0
- package/src/lib/components/shared/facet-value-selector.stories.tsx +48 -0
- package/src/lib/components/shared/facet-value-selector.tsx +130 -34
- package/src/lib/components/shared/paginated-list-data-table.stories.tsx +212 -0
- package/src/lib/components/shared/paginated-list-data-table.tsx +12 -12
- package/src/lib/components/shared/permission-guard.stories.tsx +46 -0
- package/src/lib/components/shared/remove-from-channel-bulk-action.tsx +2 -0
- package/src/lib/components/shared/rich-text-editor/responsive-toolbar.tsx +8 -4
- package/src/lib/components/shared/rich-text-editor/rich-text-editor.tsx +1 -0
- package/src/lib/components/shared/table-cell/order-table-cell-components.tsx +40 -0
- package/src/lib/components/shared/vendure-image.stories.tsx +167 -0
- package/src/lib/components/shared/vendure-image.tsx +6 -7
- package/src/lib/components/ui/accordion.stories.tsx +33 -0
- package/src/lib/components/ui/alert-dialog.stories.tsx +48 -0
- package/src/lib/components/ui/alert.stories.tsx +35 -0
- package/src/lib/components/ui/aspect-ratio.stories.tsx +28 -0
- package/src/lib/components/ui/badge.stories.tsx +28 -0
- package/src/lib/components/ui/breadcrumb.stories.tsx +41 -0
- package/src/lib/components/ui/button.stories.tsx +38 -0
- package/src/lib/components/ui/calendar.stories.tsx +22 -0
- package/src/lib/components/ui/card.stories.tsx +28 -0
- package/src/lib/components/ui/carousel.stories.tsx +34 -0
- package/src/lib/components/ui/checkbox.stories.tsx +31 -0
- package/src/lib/components/ui/collapsible.stories.tsx +39 -0
- package/src/lib/components/ui/command.stories.tsx +44 -0
- package/src/lib/components/ui/context-menu.stories.tsx +38 -0
- package/src/lib/components/ui/dialog.stories.tsx +52 -0
- package/src/lib/components/ui/drawer.stories.tsx +50 -0
- package/src/lib/components/ui/dropdown-menu.stories.tsx +41 -0
- package/src/lib/components/ui/hover-card.stories.tsx +38 -0
- package/src/lib/components/ui/input-group.tsx +148 -0
- package/src/lib/components/ui/input-otp.stories.tsx +30 -0
- package/src/lib/components/ui/input.stories.tsx +38 -0
- package/src/lib/components/ui/label.stories.tsx +24 -0
- package/src/lib/components/ui/menubar.stories.tsx +53 -0
- package/src/lib/components/ui/navigation-menu.stories.tsx +54 -0
- package/src/lib/components/ui/pagination.stories.tsx +51 -0
- package/src/lib/components/ui/password-input.stories.tsx +32 -0
- package/src/lib/components/ui/password-input.tsx +33 -0
- package/src/lib/components/ui/popover.stories.tsx +33 -0
- package/src/lib/components/ui/progress.stories.tsx +27 -0
- package/src/lib/components/ui/radio-group.stories.tsx +34 -0
- package/src/lib/components/ui/resizable.stories.tsx +32 -0
- package/src/lib/components/ui/scroll-area.stories.tsx +31 -0
- package/src/lib/components/ui/select.stories.tsx +36 -0
- package/src/lib/components/ui/separator.stories.tsx +35 -0
- package/src/lib/components/ui/sheet.stories.tsx +50 -0
- package/src/lib/components/ui/sidebar-context.ts +16 -0
- package/src/lib/components/ui/sidebar.tsx +2 -13
- package/src/lib/components/ui/skeleton.stories.tsx +26 -0
- package/src/lib/components/ui/slider.stories.tsx +37 -0
- package/src/lib/components/ui/switch.stories.tsx +31 -0
- package/src/lib/components/ui/table.stories.tsx +52 -0
- package/src/lib/components/ui/tabs.stories.tsx +29 -0
- package/src/lib/components/ui/textarea.stories.tsx +32 -0
- package/src/lib/components/ui/toggle-group.stories.tsx +31 -0
- package/src/lib/components/ui/toggle.stories.tsx +39 -0
- package/src/lib/components/ui/tooltip.stories.tsx +30 -0
- package/src/lib/components/ui/tooltip.tsx +2 -2
- package/src/lib/framework/alert/alert-extensions.tsx +0 -11
- package/src/lib/framework/alert/alert-item.tsx +14 -19
- package/src/lib/framework/alert/alerts-indicator.tsx +14 -15
- package/src/lib/framework/alert/search-index-buffer-alert/search-index-buffer-alert.ts +41 -0
- package/src/lib/framework/component-registry/component-registry.tsx +3 -14
- package/src/lib/framework/dashboard-widget/base-widget.tsx +18 -9
- package/src/lib/framework/dashboard-widget/widget-filters-context.tsx +12 -11
- package/src/lib/framework/defaults.ts +9 -13
- package/src/lib/framework/extension-api/input-component-extensions.tsx +6 -1
- package/src/lib/framework/extension-api/logic/alerts.ts +3 -2
- package/src/lib/framework/extension-api/types/alerts.ts +12 -6
- package/src/lib/framework/extension-api/types/data-table.ts +5 -2
- package/src/lib/framework/extension-api/types/login.ts +0 -21
- package/src/lib/framework/layout-engine/custom-form-page.stories.tsx +344 -0
- package/src/lib/framework/layout-engine/page-layout.tsx +11 -9
- package/src/lib/framework/layout-engine/page.stories.tsx +275 -0
- package/src/lib/framework/nav-menu/nav-menu-extensions.ts +32 -19
- package/src/lib/framework/page/detail-page.stories.tsx +151 -0
- package/src/lib/framework/page/list-page.stories.tsx +217 -0
- package/src/lib/framework/page/list-page.tsx +8 -1
- package/src/lib/graphql/api.ts +18 -1
- package/src/lib/graphql/graphql-env.d.ts +1 -1
- package/src/lib/hooks/use-alerts.ts +84 -0
- package/src/lib/hooks/use-floating-bulk-actions.ts +2 -3
- package/src/lib/index.ts +12 -5
- package/src/lib/providers/alerts-provider.tsx +60 -0
- package/src/lib/providers/theme-provider.tsx +6 -3
package/src/i18n/locales/fa.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 "هر ۶۰ ثانیه"
|
|
|
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 "آدرس خیابان ۲"
|
|
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
|
|