@inventreedb/ui 0.0.1
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/.babelrc +8 -0
- package/.linguirc +55 -0
- package/README.md +17 -0
- package/index.html +15 -0
- package/lib/enums/ApiEndpoints.tsx +233 -0
- package/lib/enums/ModelType.tsx +38 -0
- package/lib/enums/Roles.tsx +25 -0
- package/lib/functions/Api.tsx +42 -0
- package/lib/functions/Plugins.tsx +27 -0
- package/lib/index.ts +11 -0
- package/lib/types/Auth.tsx +51 -0
- package/lib/types/Core.tsx +13 -0
- package/lib/types/Filters.tsx +69 -0
- package/lib/types/Forms.tsx +185 -0
- package/lib/types/Modals.tsx +17 -0
- package/lib/types/Plugins.tsx +68 -0
- package/lib/types/Server.tsx +8 -0
- package/lib/types/Settings.tsx +55 -0
- package/lib/types/Tables.tsx +69 -0
- package/lib/types/User.tsx +62 -0
- package/netlify.toml +22 -0
- package/package.json +125 -0
- package/playwright/global-setup.ts +45 -0
- package/playwright.config.ts +99 -0
- package/public/inventree.svg +291 -0
- package/src/App.tsx +35 -0
- package/src/assets/inventree.svg +1 -0
- package/src/components/Boundary.tsx +43 -0
- package/src/components/SplashScreen.tsx +35 -0
- package/src/components/barcodes/BarcodeCameraInput.tsx +207 -0
- package/src/components/barcodes/BarcodeInput.tsx +127 -0
- package/src/components/barcodes/BarcodeKeyboardInput.tsx +50 -0
- package/src/components/barcodes/BarcodeScanDialog.tsx +101 -0
- package/src/components/barcodes/BarcodeScanItem.tsx +23 -0
- package/src/components/barcodes/QRCode.tsx +211 -0
- package/src/components/buttons/ActionButton.tsx +61 -0
- package/src/components/buttons/AddItemButton.tsx +10 -0
- package/src/components/buttons/AdminButton.tsx +91 -0
- package/src/components/buttons/ButtonMenu.tsx +33 -0
- package/src/components/buttons/CopyButton.tsx +52 -0
- package/src/components/buttons/PrimaryActionButton.tsx +40 -0
- package/src/components/buttons/PrintingActions.tsx +191 -0
- package/src/components/buttons/RemoveRowButton.tsx +22 -0
- package/src/components/buttons/SSOButton.tsx +53 -0
- package/src/components/buttons/ScanButton.tsx +27 -0
- package/src/components/buttons/SegmentedIconControl.tsx +51 -0
- package/src/components/buttons/SplitButton.css.ts +19 -0
- package/src/components/buttons/SplitButton.tsx +111 -0
- package/src/components/buttons/SpotlightButton.tsx +22 -0
- package/src/components/buttons/StarredToggleButton.tsx +62 -0
- package/src/components/buttons/YesNoButton.tsx +42 -0
- package/src/components/calendar/Calendar.tsx +193 -0
- package/src/components/calendar/OrderCalendar.tsx +209 -0
- package/src/components/charts/colors.tsx +12 -0
- package/src/components/charts/tooltipFormatter.tsx +12 -0
- package/src/components/dashboard/DashboardLayout.tsx +327 -0
- package/src/components/dashboard/DashboardMenu.tsx +136 -0
- package/src/components/dashboard/DashboardWidget.tsx +82 -0
- package/src/components/dashboard/DashboardWidgetDrawer.tsx +130 -0
- package/src/components/dashboard/DashboardWidgetLibrary.tsx +189 -0
- package/src/components/dashboard/widgets/ColorToggleWidget.tsx +28 -0
- package/src/components/dashboard/widgets/GetStartedWidget.tsx +19 -0
- package/src/components/dashboard/widgets/LanguageSelectWidget.tsx +28 -0
- package/src/components/dashboard/widgets/NewsWidget.tsx +143 -0
- package/src/components/dashboard/widgets/QueryCountDashboardWidget.tsx +134 -0
- package/src/components/details/Details.tsx +514 -0
- package/src/components/details/DetailsBadge.tsx +20 -0
- package/src/components/details/DetailsImage.tsx +462 -0
- package/src/components/details/ItemDetails.tsx +17 -0
- package/src/components/editors/NotesEditor.tsx +232 -0
- package/src/components/editors/TemplateEditor/CodeEditor/CodeEditor.tsx +158 -0
- package/src/components/editors/TemplateEditor/CodeEditor/index.tsx +12 -0
- package/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx +90 -0
- package/src/components/editors/TemplateEditor/PdfPreview/index.tsx +12 -0
- package/src/components/editors/TemplateEditor/TemplateEditor.tsx +425 -0
- package/src/components/editors/TemplateEditor/index.tsx +3 -0
- package/src/components/errors/ClientError.tsx +28 -0
- package/src/components/errors/GenericErrorPage.tsx +73 -0
- package/src/components/errors/NotAuthenticated.tsx +12 -0
- package/src/components/errors/NotFound.tsx +12 -0
- package/src/components/errors/PermissionDenied.tsx +12 -0
- package/src/components/errors/ServerError.tsx +13 -0
- package/src/components/forms/ApiForm.tsx +718 -0
- package/src/components/forms/AuthFormOptions.tsx +39 -0
- package/src/components/forms/AuthenticationForm.tsx +332 -0
- package/src/components/forms/HostOptionsForm.tsx +96 -0
- package/src/components/forms/InstanceOptions.tsx +178 -0
- package/src/components/forms/StandaloneField.tsx +55 -0
- package/src/components/forms/fields/ApiFormField.tsx +281 -0
- package/src/components/forms/fields/ChoiceField.tsx +86 -0
- package/src/components/forms/fields/DateField.tsx +79 -0
- package/src/components/forms/fields/DependentField.tsx +91 -0
- package/src/components/forms/fields/IconField.tsx +353 -0
- package/src/components/forms/fields/NestedObjectField.tsx +45 -0
- package/src/components/forms/fields/RelatedModelField.tsx +339 -0
- package/src/components/forms/fields/TableField.tsx +275 -0
- package/src/components/forms/fields/TextField.tsx +81 -0
- package/src/components/images/ApiImage.tsx +35 -0
- package/src/components/images/Thumbnail.tsx +52 -0
- package/src/components/importer/ImportDataSelector.tsx +433 -0
- package/src/components/importer/ImporterColumnSelector.tsx +244 -0
- package/src/components/importer/ImporterDrawer.tsx +173 -0
- package/src/components/importer/ImporterImportProgress.tsx +45 -0
- package/src/components/items/ActionDropdown.tsx +290 -0
- package/src/components/items/ApiIcon.css.ts +13 -0
- package/src/components/items/ApiIcon.tsx +32 -0
- package/src/components/items/AttachmentLink.tsx +79 -0
- package/src/components/items/ColorToggle.tsx +34 -0
- package/src/components/items/DashboardItem.tsx +33 -0
- package/src/components/items/DocInfo.tsx +20 -0
- package/src/components/items/DocTooltip.tsx +98 -0
- package/src/components/items/ErrorItem.tsx +17 -0
- package/src/components/items/Expand.tsx +14 -0
- package/src/components/items/GettingStartedCarousel.css.ts +30 -0
- package/src/components/items/GettingStartedCarousel.tsx +49 -0
- package/src/components/items/InfoItem.tsx +64 -0
- package/src/components/items/InvenTreeLogo.tsx +24 -0
- package/src/components/items/LanguageSelect.tsx +43 -0
- package/src/components/items/LanguageToggle.tsx +37 -0
- package/src/components/items/MenuLinks.tsx +113 -0
- package/src/components/items/OnlyStaff.tsx +10 -0
- package/src/components/items/ProgressBar.tsx +45 -0
- package/src/components/items/StylishText.tsx +59 -0
- package/src/components/items/TitleWithDoc.tsx +26 -0
- package/src/components/items/UnavailableIndicator.tsx +5 -0
- package/src/components/items/inventree.svg +1 -0
- package/src/components/modals/AboutInvenTreeModal.tsx +203 -0
- package/src/components/modals/LicenseModal.tsx +116 -0
- package/src/components/modals/QrModal.tsx +21 -0
- package/src/components/modals/ServerInfoModal.tsx +136 -0
- package/src/components/nav/Alerts.tsx +130 -0
- package/src/components/nav/BreadcrumbList.tsx +84 -0
- package/src/components/nav/DetailDrawer.css.ts +6 -0
- package/src/components/nav/DetailDrawer.tsx +105 -0
- package/src/components/nav/Footer.tsx +11 -0
- package/src/components/nav/Header.tsx +226 -0
- package/src/components/nav/InstanceDetail.tsx +46 -0
- package/src/components/nav/Layout.tsx +85 -0
- package/src/components/nav/MainMenu.tsx +101 -0
- package/src/components/nav/NavHoverMenu.tsx +15 -0
- package/src/components/nav/NavigationDrawer.tsx +230 -0
- package/src/components/nav/NavigationTree.tsx +210 -0
- package/src/components/nav/NotificationDrawer.tsx +231 -0
- package/src/components/nav/PageDetail.tsx +171 -0
- package/src/components/nav/PageTitle.tsx +53 -0
- package/src/components/nav/SearchDrawer.tsx +598 -0
- package/src/components/nav/SettingsHeader.tsx +50 -0
- package/src/components/panels/AttachmentPanel.tsx +27 -0
- package/src/components/panels/NotesPanel.tsx +36 -0
- package/src/components/panels/Panel.tsx +15 -0
- package/src/components/panels/PanelGroup.css.ts +10 -0
- package/src/components/panels/PanelGroup.tsx +292 -0
- package/src/components/plugins/LocateItemButton.tsx +94 -0
- package/src/components/plugins/PluginContext.tsx +67 -0
- package/src/components/plugins/PluginDrawer.tsx +156 -0
- package/src/components/plugins/PluginInterface.tsx +34 -0
- package/src/components/plugins/PluginPanel.tsx +37 -0
- package/src/components/plugins/PluginSettingsPanel.tsx +34 -0
- package/src/components/plugins/PluginSource.tsx +48 -0
- package/src/components/plugins/PluginUIFeature.tsx +174 -0
- package/src/components/plugins/PluginUIFeatureTypes.ts +78 -0
- package/src/components/plugins/RemoteComponent.tsx +137 -0
- package/src/components/render/Build.tsx +54 -0
- package/src/components/render/Company.tsx +114 -0
- package/src/components/render/Generic.tsx +49 -0
- package/src/components/render/Instance.tsx +240 -0
- package/src/components/render/InstanceFromUrl.tsx +33 -0
- package/src/components/render/ModelType.tsx +293 -0
- package/src/components/render/Order.tsx +124 -0
- package/src/components/render/Part.tsx +109 -0
- package/src/components/render/Plugin.tsx +21 -0
- package/src/components/render/Report.tsx +29 -0
- package/src/components/render/StatusRenderer.tsx +178 -0
- package/src/components/render/Stock.tsx +84 -0
- package/src/components/render/User.tsx +42 -0
- package/src/components/settings/FactCollection.tsx +31 -0
- package/src/components/settings/FactItem.tsx +17 -0
- package/src/components/settings/SettingItem.tsx +176 -0
- package/src/components/settings/SettingList.tsx +217 -0
- package/src/components/wizards/OrderPartsWizard.tsx +473 -0
- package/src/components/wizards/WizardDrawer.tsx +188 -0
- package/src/contexts/ApiContext.tsx +31 -0
- package/src/contexts/LanguageContext.tsx +155 -0
- package/src/contexts/ThemeContext.tsx +58 -0
- package/src/contexts/colorSchema.tsx +67 -0
- package/src/defaults/actions.tsx +87 -0
- package/src/defaults/backendMappings.tsx +32 -0
- package/src/defaults/defaultHostList.tsx +4 -0
- package/src/defaults/defaults.tsx +38 -0
- package/src/defaults/formatters.tsx +176 -0
- package/src/defaults/links.tsx +193 -0
- package/src/defaults/templates.tsx +53 -0
- package/src/forms/BomForms.tsx +26 -0
- package/src/forms/BuildForms.tsx +615 -0
- package/src/forms/CommonForms.tsx +89 -0
- package/src/forms/CompanyForms.tsx +133 -0
- package/src/forms/ImporterForms.tsx +20 -0
- package/src/forms/PartForms.tsx +281 -0
- package/src/forms/PurchaseOrderForms.tsx +779 -0
- package/src/forms/ReturnOrderForms.tsx +263 -0
- package/src/forms/SalesOrderForms.tsx +408 -0
- package/src/forms/StockForms.tsx +1296 -0
- package/src/forms/selectionListFields.tsx +120 -0
- package/src/functions/api.tsx +61 -0
- package/src/functions/auth.tsx +574 -0
- package/src/functions/conversion.tsx +42 -0
- package/src/functions/events.tsx +6 -0
- package/src/functions/forms.tsx +173 -0
- package/src/functions/icons.tsx +294 -0
- package/src/functions/loading.tsx +29 -0
- package/src/functions/navigation.tsx +20 -0
- package/src/functions/notifications.tsx +101 -0
- package/src/functions/tables.tsx +26 -0
- package/src/functions/uid.tsx +15 -0
- package/src/functions/urls.tsx +58 -0
- package/src/hooks/UseCalendar.tsx +178 -0
- package/src/hooks/UseDashboardItems.tsx +118 -0
- package/src/hooks/UseDataExport.tsx +125 -0
- package/src/hooks/UseDataOutput.tsx +109 -0
- package/src/hooks/UseFilter.tsx +67 -0
- package/src/hooks/UseFilterSet.tsx +24 -0
- package/src/hooks/UseForm.tsx +161 -0
- package/src/hooks/UseGenerator.tsx +92 -0
- package/src/hooks/UseImportSession.tsx +139 -0
- package/src/hooks/UseInstance.tsx +137 -0
- package/src/hooks/UseInstanceName.tsx +14 -0
- package/src/hooks/UseModal.tsx +38 -0
- package/src/hooks/UsePlaceholder.tsx +66 -0
- package/src/hooks/UsePluginPanels.tsx +123 -0
- package/src/hooks/UsePluginUIFeature.tsx +95 -0
- package/src/hooks/UsePlugins.tsx +45 -0
- package/src/hooks/UseSelectedRows.tsx +37 -0
- package/src/hooks/UseStatusCodes.tsx +50 -0
- package/src/hooks/UseTable.tsx +145 -0
- package/src/hooks/UseWizard.tsx +133 -0
- package/src/locales/ar/messages.d.ts +4 -0
- package/src/locales/ar/messages.po +10695 -0
- package/src/locales/ar/messages.ts +1 -0
- package/src/locales/bg/messages.d.ts +4 -0
- package/src/locales/bg/messages.po +10695 -0
- package/src/locales/bg/messages.ts +1 -0
- package/src/locales/cs/messages.d.ts +4 -0
- package/src/locales/cs/messages.po +10695 -0
- package/src/locales/cs/messages.ts +1 -0
- package/src/locales/da/messages.d.ts +4 -0
- package/src/locales/da/messages.po +10695 -0
- package/src/locales/da/messages.ts +1 -0
- package/src/locales/de/messages.d.ts +4 -0
- package/src/locales/de/messages.po +10695 -0
- package/src/locales/de/messages.ts +1 -0
- package/src/locales/el/messages.d.ts +4 -0
- package/src/locales/el/messages.po +10695 -0
- package/src/locales/el/messages.ts +1 -0
- package/src/locales/en/messages.d.ts +4 -0
- package/src/locales/en/messages.po +10689 -0
- package/src/locales/en/messages.ts +1 -0
- package/src/locales/es/messages.d.ts +4 -0
- package/src/locales/es/messages.po +10695 -0
- package/src/locales/es/messages.ts +1 -0
- package/src/locales/es_MX/messages.d.ts +4 -0
- package/src/locales/es_MX/messages.po +10695 -0
- package/src/locales/es_MX/messages.ts +1 -0
- package/src/locales/et/messages.d.ts +4 -0
- package/src/locales/et/messages.po +10695 -0
- package/src/locales/et/messages.ts +1 -0
- package/src/locales/fa/messages.d.ts +4 -0
- package/src/locales/fa/messages.po +10695 -0
- package/src/locales/fa/messages.ts +1 -0
- package/src/locales/fi/messages.d.ts +4 -0
- package/src/locales/fi/messages.po +10695 -0
- package/src/locales/fi/messages.ts +1 -0
- package/src/locales/fr/messages.d.ts +4 -0
- package/src/locales/fr/messages.po +10695 -0
- package/src/locales/fr/messages.ts +1 -0
- package/src/locales/he/messages.d.ts +4 -0
- package/src/locales/he/messages.po +10695 -0
- package/src/locales/he/messages.ts +1 -0
- package/src/locales/hi/messages.d.ts +4 -0
- package/src/locales/hi/messages.po +10695 -0
- package/src/locales/hi/messages.ts +1 -0
- package/src/locales/hu/messages.d.ts +4 -0
- package/src/locales/hu/messages.po +10695 -0
- package/src/locales/hu/messages.ts +1 -0
- package/src/locales/id/messages.po +10695 -0
- package/src/locales/it/messages.d.ts +4 -0
- package/src/locales/it/messages.po +10695 -0
- package/src/locales/it/messages.ts +1 -0
- package/src/locales/ja/messages.d.ts +4 -0
- package/src/locales/ja/messages.po +10695 -0
- package/src/locales/ja/messages.ts +1 -0
- package/src/locales/ko/messages.d.ts +4 -0
- package/src/locales/ko/messages.po +10695 -0
- package/src/locales/ko/messages.ts +1 -0
- package/src/locales/lt/messages.d.ts +4 -0
- package/src/locales/lt/messages.po +10695 -0
- package/src/locales/lt/messages.ts +1 -0
- package/src/locales/lv/messages.d.ts +4 -0
- package/src/locales/lv/messages.po +10695 -0
- package/src/locales/lv/messages.ts +1 -0
- package/src/locales/nl/messages.d.ts +4 -0
- package/src/locales/nl/messages.po +10695 -0
- package/src/locales/nl/messages.ts +1 -0
- package/src/locales/no/messages.d.ts +4 -0
- package/src/locales/no/messages.po +10695 -0
- package/src/locales/no/messages.ts +1 -0
- package/src/locales/pl/messages.d.ts +4 -0
- package/src/locales/pl/messages.po +10695 -0
- package/src/locales/pl/messages.ts +1 -0
- package/src/locales/pseudo-LOCALE/messages.d.ts +4 -0
- package/src/locales/pseudo-LOCALE/messages.po +8003 -0
- package/src/locales/pseudo-LOCALE/messages.ts +1 -0
- package/src/locales/pt/messages.d.ts +4 -0
- package/src/locales/pt/messages.po +10696 -0
- package/src/locales/pt/messages.ts +1 -0
- package/src/locales/pt_BR/messages.d.ts +4 -0
- package/src/locales/pt_BR/messages.po +10695 -0
- package/src/locales/pt_BR/messages.ts +1 -0
- package/src/locales/ro/messages.po +10695 -0
- package/src/locales/ro/messages.ts +1 -0
- package/src/locales/ru/messages.d.ts +4 -0
- package/src/locales/ru/messages.po +10695 -0
- package/src/locales/ru/messages.ts +1 -0
- package/src/locales/sk/messages.d.ts +4 -0
- package/src/locales/sk/messages.po +10695 -0
- package/src/locales/sk/messages.ts +1 -0
- package/src/locales/sl/messages.d.ts +4 -0
- package/src/locales/sl/messages.po +10695 -0
- package/src/locales/sl/messages.ts +1 -0
- package/src/locales/sr/messages.d.ts +4 -0
- package/src/locales/sr/messages.po +10695 -0
- package/src/locales/sr/messages.ts +1 -0
- package/src/locales/sv/messages.d.ts +4 -0
- package/src/locales/sv/messages.po +10695 -0
- package/src/locales/sv/messages.ts +1 -0
- package/src/locales/th/messages.d.ts +4 -0
- package/src/locales/th/messages.po +10695 -0
- package/src/locales/th/messages.ts +1 -0
- package/src/locales/tr/messages.d.ts +4 -0
- package/src/locales/tr/messages.po +10695 -0
- package/src/locales/tr/messages.ts +1 -0
- package/src/locales/uk/messages.d.ts +3 -0
- package/src/locales/uk/messages.po +10695 -0
- package/src/locales/uk/messages.ts +1 -0
- package/src/locales/vi/messages.d.ts +4 -0
- package/src/locales/vi/messages.po +10695 -0
- package/src/locales/vi/messages.ts +1 -0
- package/src/locales/zh_Hans/messages.d.ts +4 -0
- package/src/locales/zh_Hans/messages.po +10695 -0
- package/src/locales/zh_Hans/messages.ts +1 -0
- package/src/locales/zh_Hant/messages.d.ts +4 -0
- package/src/locales/zh_Hant/messages.po +10695 -0
- package/src/locales/zh_Hant/messages.ts +1 -0
- package/src/main.css.ts +148 -0
- package/src/main.tsx +123 -0
- package/src/pages/Auth/ChangePassword.tsx +84 -0
- package/src/pages/Auth/Layout.tsx +74 -0
- package/src/pages/Auth/LoggedIn.tsx +21 -0
- package/src/pages/Auth/Login.tsx +133 -0
- package/src/pages/Auth/Logout.tsx +16 -0
- package/src/pages/Auth/MFA.tsx +36 -0
- package/src/pages/Auth/MFASetup.tsx +38 -0
- package/src/pages/Auth/Register.tsx +28 -0
- package/src/pages/Auth/Reset.tsx +30 -0
- package/src/pages/Auth/ResetPassword.tsx +48 -0
- package/src/pages/Auth/VerifyEmail.tsx +34 -0
- package/src/pages/ErrorPage.tsx +26 -0
- package/src/pages/Index/Home.tsx +12 -0
- package/src/pages/Index/Scan.tsx +258 -0
- package/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx +162 -0
- package/src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx +38 -0
- package/src/pages/Index/Settings/AccountSettings/SecurityContent.tsx +713 -0
- package/src/pages/Index/Settings/AccountSettings/UserPanel.tsx +24 -0
- package/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx +207 -0
- package/src/pages/Index/Settings/AccountSettings/useConfirm.tsx +117 -0
- package/src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx +111 -0
- package/src/pages/Index/Settings/AdminCenter/Index.tsx +251 -0
- package/src/pages/Index/Settings/AdminCenter/LabelTemplatePanel.tsx +23 -0
- package/src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx +110 -0
- package/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx +29 -0
- package/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx +84 -0
- package/src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx +38 -0
- package/src/pages/Index/Settings/AdminCenter/StocktakePanel.tsx +31 -0
- package/src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx +73 -0
- package/src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx +74 -0
- package/src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx +49 -0
- package/src/pages/Index/Settings/SystemSettings.tsx +339 -0
- package/src/pages/Index/Settings/UserSettings.tsx +143 -0
- package/src/pages/Notifications.tsx +134 -0
- package/src/pages/build/BuildDetail.tsx +579 -0
- package/src/pages/build/BuildIndex.tsx +100 -0
- package/src/pages/company/CompanyDetail.tsx +352 -0
- package/src/pages/company/CustomerDetail.tsx +13 -0
- package/src/pages/company/ManufacturerDetail.tsx +13 -0
- package/src/pages/company/ManufacturerPartDetail.tsx +307 -0
- package/src/pages/company/SupplierDetail.tsx +13 -0
- package/src/pages/company/SupplierPartDetail.tsx +433 -0
- package/src/pages/core/CoreIndex.tsx +50 -0
- package/src/pages/core/GroupDetail.tsx +97 -0
- package/src/pages/core/UserDetail.tsx +193 -0
- package/src/pages/part/CategoryDetail.tsx +369 -0
- package/src/pages/part/PartAllocationPanel.tsx +40 -0
- package/src/pages/part/PartDetail.tsx +1071 -0
- package/src/pages/part/PartPricingPanel.tsx +155 -0
- package/src/pages/part/PartSchedulingDetail.tsx +315 -0
- package/src/pages/part/PartStocktakeDetail.tsx +285 -0
- package/src/pages/part/PartSupplierDetail.tsx +31 -0
- package/src/pages/part/pricing/BomPricingPanel.tsx +269 -0
- package/src/pages/part/pricing/PriceBreakPanel.tsx +182 -0
- package/src/pages/part/pricing/PricingOverviewPanel.tsx +338 -0
- package/src/pages/part/pricing/PricingPanel.tsx +82 -0
- package/src/pages/part/pricing/PurchaseHistoryPanel.tsx +134 -0
- package/src/pages/part/pricing/SaleHistoryPanel.tsx +95 -0
- package/src/pages/part/pricing/SupplierPricingPanel.tsx +80 -0
- package/src/pages/part/pricing/VariantPricingPanel.tsx +112 -0
- package/src/pages/purchasing/PurchaseOrderDetail.tsx +547 -0
- package/src/pages/purchasing/PurchasingIndex.tsx +131 -0
- package/src/pages/sales/ReturnOrderDetail.tsx +529 -0
- package/src/pages/sales/SalesIndex.tsx +148 -0
- package/src/pages/sales/SalesOrderDetail.tsx +593 -0
- package/src/pages/sales/SalesOrderShipmentDetail.tsx +385 -0
- package/src/pages/stock/LocationDetail.tsx +413 -0
- package/src/pages/stock/StockDetail.tsx +951 -0
- package/src/router.tsx +213 -0
- package/src/states/ApiState.tsx +85 -0
- package/src/states/IconState.tsx +94 -0
- package/src/states/LocalState.tsx +181 -0
- package/src/states/SettingsState.tsx +206 -0
- package/src/states/StatusState.tsx +55 -0
- package/src/states/UserState.tsx +202 -0
- package/src/states/states.tsx +69 -0
- package/src/tables/Column.tsx +29 -0
- package/src/tables/ColumnRenderers.tsx +320 -0
- package/src/tables/ColumnSelect.tsx +39 -0
- package/src/tables/Filter.tsx +297 -0
- package/src/tables/FilterSelectDrawer.tsx +358 -0
- package/src/tables/InvenTreeTable.tsx +750 -0
- package/src/tables/InvenTreeTableHeader.tsx +257 -0
- package/src/tables/RowActions.tsx +176 -0
- package/src/tables/RowExpansionIcon.tsx +16 -0
- package/src/tables/Search.tsx +42 -0
- package/src/tables/TableHoverCard.tsx +91 -0
- package/src/tables/bom/BomTable.tsx +590 -0
- package/src/tables/bom/UsedInTable.tsx +114 -0
- package/src/tables/build/BuildAllocatedStockTable.tsx +233 -0
- package/src/tables/build/BuildLineTable.tsx +800 -0
- package/src/tables/build/BuildOrderTable.tsx +226 -0
- package/src/tables/build/BuildOrderTestTable.tsx +265 -0
- package/src/tables/build/BuildOutputTable.tsx +599 -0
- package/src/tables/company/AddressTable.tsx +211 -0
- package/src/tables/company/CompanyTable.tsx +176 -0
- package/src/tables/company/ContactTable.tsx +182 -0
- package/src/tables/core/UserTable.tsx +88 -0
- package/src/tables/general/AttachmentTable.tsx +404 -0
- package/src/tables/general/BarcodeScanTable.tsx +124 -0
- package/src/tables/general/ExtraLineItemTable.tsx +174 -0
- package/src/tables/machine/MachineListTable.tsx +634 -0
- package/src/tables/machine/MachineTypeTable.tsx +395 -0
- package/src/tables/notifications/NotificationTable.tsx +60 -0
- package/src/tables/part/ParametricPartTable.tsx +297 -0
- package/src/tables/part/PartBuildAllocationsTable.tsx +128 -0
- package/src/tables/part/PartCategoryTable.tsx +208 -0
- package/src/tables/part/PartCategoryTemplateTable.tsx +157 -0
- package/src/tables/part/PartParameterTable.tsx +226 -0
- package/src/tables/part/PartParameterTemplateTable.tsx +168 -0
- package/src/tables/part/PartPurchaseOrdersTable.tsx +163 -0
- package/src/tables/part/PartSalesAllocationsTable.tsx +130 -0
- package/src/tables/part/PartTable.tsx +423 -0
- package/src/tables/part/PartTestTemplateTable.tsx +290 -0
- package/src/tables/part/PartThumbTable.tsx +230 -0
- package/src/tables/part/PartVariantTable.tsx +52 -0
- package/src/tables/part/RelatedPartTable.tsx +182 -0
- package/src/tables/part/SelectionListTable.tsx +134 -0
- package/src/tables/plugin/PluginErrorTable.tsx +58 -0
- package/src/tables/plugin/PluginListTable.tsx +440 -0
- package/src/tables/purchasing/ManufacturerPartParameterTable.tsx +136 -0
- package/src/tables/purchasing/ManufacturerPartTable.tsx +158 -0
- package/src/tables/purchasing/PurchaseOrderLineItemTable.tsx +424 -0
- package/src/tables/purchasing/PurchaseOrderTable.tsx +193 -0
- package/src/tables/purchasing/SupplierPartTable.tsx +281 -0
- package/src/tables/purchasing/SupplierPriceBreakTable.tsx +222 -0
- package/src/tables/sales/ReturnOrderLineItemTable.tsx +271 -0
- package/src/tables/sales/ReturnOrderTable.tsx +201 -0
- package/src/tables/sales/SalesOrderAllocationTable.tsx +330 -0
- package/src/tables/sales/SalesOrderLineItemTable.tsx +508 -0
- package/src/tables/sales/SalesOrderShipmentTable.tsx +225 -0
- package/src/tables/sales/SalesOrderTable.tsx +212 -0
- package/src/tables/settings/ApiTokenTable.tsx +203 -0
- package/src/tables/settings/BarcodeScanHistoryTable.tsx +281 -0
- package/src/tables/settings/CustomStateTable.tsx +226 -0
- package/src/tables/settings/CustomUnitsTable.tsx +125 -0
- package/src/tables/settings/ErrorTable.tsx +170 -0
- package/src/tables/settings/ExportSessionTable.tsx +60 -0
- package/src/tables/settings/FailedTasksTable.tsx +103 -0
- package/src/tables/settings/GroupTable.tsx +240 -0
- package/src/tables/settings/ImportSessionTable.tsx +175 -0
- package/src/tables/settings/PendingTasksTable.tsx +63 -0
- package/src/tables/settings/ProjectCodeTable.tsx +115 -0
- package/src/tables/settings/ScheduledTasksTable.tsx +62 -0
- package/src/tables/settings/StocktakeReportTable.tsx +111 -0
- package/src/tables/settings/TemplateTable.tsx +404 -0
- package/src/tables/settings/UserTable.tsx +329 -0
- package/src/tables/stock/InstalledItemsTable.tsx +146 -0
- package/src/tables/stock/LocationTypesTable.tsx +132 -0
- package/src/tables/stock/StockItemTable.tsx +707 -0
- package/src/tables/stock/StockItemTestResultTable.tsx +487 -0
- package/src/tables/stock/StockLocationTable.tsx +208 -0
- package/src/tables/stock/StockTrackingTable.tsx +244 -0
- package/src/theme.ts +5 -0
- package/src/views/DesktopAppView.tsx +28 -0
- package/src/views/MainView.tsx +38 -0
- package/src/views/MobileAppView.tsx +43 -0
- package/tests/baseFixtures.ts +93 -0
- package/tests/defaults.ts +18 -0
- package/tests/helpers.ts +122 -0
- package/tests/login.ts +97 -0
- package/tests/pages/pui_build.spec.ts +373 -0
- package/tests/pages/pui_company.spec.ts +40 -0
- package/tests/pages/pui_core.spec.ts +26 -0
- package/tests/pages/pui_dashboard.spec.ts +64 -0
- package/tests/pages/pui_part.spec.ts +413 -0
- package/tests/pages/pui_purchase_order.spec.ts +388 -0
- package/tests/pages/pui_sales_order.spec.ts +224 -0
- package/tests/pages/pui_scan.spec.ts +114 -0
- package/tests/pages/pui_stock.spec.ts +259 -0
- package/tests/pui_exporting.spec.ts +124 -0
- package/tests/pui_forms.spec.ts +131 -0
- package/tests/pui_general.spec.ts +60 -0
- package/tests/pui_login.spec.ts +74 -0
- package/tests/pui_modals.spec.ts +144 -0
- package/tests/pui_plugins.spec.ts +216 -0
- package/tests/pui_printing.spec.ts +149 -0
- package/tests/pui_settings.spec.ts +285 -0
- package/tests/pui_tables.spec.ts +65 -0
- package/tests/settings/selectionList.spec.ts +103 -0
- package/tests/settings.ts +54 -0
- package/tsconfig.json +25 -0
- package/tsconfig.lib.json +13 -0
- package/tsconfig.node.json +11 -0
- package/vite-env.d.ts +11 -0
- package/vite.config.ts +98 -0
- package/vite.lib.config.ts +50 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"qwCNwv\":[\"渲染組件出錯\"],\"kH8meY\":[\"渲染此組件時發生錯誤。請參閲控制枱獲取更多信息。\"],\"MHrjPM\":[\"Title\"],\"bR26mb\":[\"掃描時出錯\"],\"fvJQqd\":[\"停止時出錯\"],\"/Snx90\":[\"選擇相機並按播放按鈕開始掃描。\"],\"yFRXH8\":[\"停止掃描\"],\"m3BKG+\":[\"開始掃描\"],\"ap+FLU\":[\"條碼\"],\"I+FvbD\":[\"掃描\"],\"XlKBRl\":[\"Camera Input\"],\"n89Qe0\":[\"Scanner Input\"],\"Hl6ptb\":[\"Barcode Data\"],\"6bgCex\":[\"No barcode data\"],\"14K7ED\":[\"Scan or enter barcode data\"],\"SlfejT\":[\"錯誤\"],\"tEKWTi\":[\"Enter barcode data\"],\"fNvDwV\":[\"掃描條碼\"],\"sikegI\":[\"No matching item found\"],\"I3WmwV\":[\"Failed to scan barcode\"],\"vAoQxm\":[\"低 (7%)\"],\"xuqOBP\":[\"中 (15%)\"],\"cxfKe+\":[\"四分之一(25%)\"],\"rgHRyZ\":[\"高 (30%)\"],\"/FLHWb\":[\"自定義條碼\"],\"AjTb8p\":[\"此條目註冊了自定義條碼。顯示的代碼並非該條碼。\"],\"vDT9iq\":[\"條碼數據:\"],\"md4cw+\":[\"選擇錯誤糾正級別\"],\"59QdRH\":[\"Failed to link barcode\"],\"yzF66j\":[\"鏈接\"],\"GZnnMw\":[\"這將刪除關聯條碼的鏈接\"],\"ut1J8k\":[\"解綁條碼\"],\"oyvgJt\":[\"在管理員界面打開\"],\"/4gGIX\":[\"Copy to clipboard\"],\"6V3Ea3\":[\"已複製\"],\"he3ygx\":[\"複製\"],\"5cY8gX\":[\"Printing Labels\"],\"T6GYw9\":[\"Printing Reports\"],\"fWLk/q\":[\"Printing\"],\"dI97M9\":[\"Printing completed successfully\"],\"pT7uop\":[\"Label printing completed successfully\"],\"kjqRDg\":[\"打印標籤\"],\"3Dx00w\":[\"The label could not be generated\"],\"BZz12Q\":[\"打印\"],\"qsurSb\":[\"打印報告\"],\"ziAjHi\":[\"Generate\"],\"nu+rR/\":[\"Report printing completed successfully\"],\"cvLQZH\":[\"The report could not be generated\"],\"/oz6DG\":[\"打印操作\"],\"Y93N6T\":[\"打印標籤\"],\"ClULGR\":[\"列印報告\"],\"3mIfxA\":[\"移除此行\"],\"pQOGQK\":[\"You will be redirected to the provider for further actions.\"],\"h6Wnsp\":[\"This provider is not full set up.\"],\"cp/ywO\":[\"Sign in redirect failed.\"],\"XDwkfO\":[\"Scan QR code\"],\"YzRRV6\":[\"Open Barcode Scanner\"],\"tY4bT4\":[\"Open QR code scanner\"],\"FcOU0s\":[\"打開聚焦\"],\"q0ylYE\":[\"Unsubscribe from part\"],\"wFwgKk\":[\"通過\"],\"qcloGZ\":[\"失效\"],\"l75CjT\":[\"是\"],\"1UzENP\":[\"否\"],\"jPJ7ye\":[\"Calendar Filters\"],\"1xwZj/\":[\"Previous month\"],\"XEb3iO\":[\"Select month\"],\"g8JmSC\":[\"Next month\"],\"ECXmiK\":[\"Download data\"],\"e7eZuA\":[\"Order Updated\"],\"uNg5Jm\":[\"Error updating order\"],\"ddrz1m\":[\"逾期\"],\"1tCrqz\":[\"No Widgets Selected\"],\"9Tu3p3\":[\"Use the menu to add widgets to the dashboard\"],\"ubMDQ+\":[\"Accept Layout\"],\"7p5kLi\":[\"儀表盤\"],\"NZubw3\":[\"編輯佈局\"],\"iRpDWj\":[\"Add Widget\"],\"Df3INE\":[\"Remove Widgets\"],\"9zbaB9\":[\"Remove this widget from the dashboard\"],\"hR65F0\":[\"Filter dashboard widgets\"],\"v6mtEM\":[\"Add this widget to the dashboard\"],\"Top2MZ\":[\"No Widgets Available\"],\"u3Y/7Z\":[\"There are no more widgets available for the dashboard\"],\"5QTyaY\":[\"已訂購零件\"],\"8FlX7D\":[\"Show the number of parts which you have subscribed to\"],\"GuGbPw\":[\"已訂閲類別\"],\"Ze1ycm\":[\"Show the number of part categories which you have subscribed to\"],\"UgdO7s\":[\"低庫存\"],\"ubzHR4\":[\"Show the number of parts which are low on stock\"],\"Iq/utX\":[\"生產訂單所需的\"],\"MaPDwn\":[\"Show parts which are required for active build orders\"],\"jE0lCc\":[\"Expired Stock Items\"],\"GOjPy7\":[\"Show the number of stock items which have expired\"],\"hPJKaZ\":[\"Stale Stock Items\"],\"onjK/8\":[\"Show the number of stock items which are stale\"],\"iPeghp\":[\"Active Build Orders\"],\"CljO1t\":[\"Show the number of build orders which are currently active\"],\"UBWkDy\":[\"逾期的生產訂單\"],\"hUqJma\":[\"Show the number of build orders which are overdue\"],\"JzqwvG\":[\"Assigned Build Orders\"],\"WHYTJb\":[\"Show the number of build orders which are assigned to you\"],\"GcRHLW\":[\"Active Sales Orders\"],\"FHJwwc\":[\"Show the number of sales orders which are currently active\"],\"Gu8K8T\":[\"逾期的銷售訂單\"],\"lFEWZt\":[\"Show the number of sales orders which are overdue\"],\"CByERp\":[\"Assigned Sales Orders\"],\"nuqSP+\":[\"Show the number of sales orders which are assigned to you\"],\"jvVVjC\":[\"Active Purchase Orders\"],\"j7Hu89\":[\"Show the number of purchase orders which are currently active\"],\"fCNzWA\":[\"逾期的採購訂單\"],\"3w4unC\":[\"Show the number of purchase orders which are overdue\"],\"ekQqTl\":[\"Assigned Purchase Orders\"],\"+r3tnw\":[\"Show the number of purchase orders which are assigned to you\"],\"Z+Qtvp\":[\"Active Return Orders\"],\"6xhYig\":[\"Show the number of return orders which are currently active\"],\"R6pvhi\":[\"逾期的退貨訂單\"],\"7VMBFV\":[\"Show the number of return orders which are overdue\"],\"i3T+gk\":[\"Assigned Return Orders\"],\"SZWZDg\":[\"Show the number of return orders which are assigned to you\"],\"4GLxhy\":[\"快速上手\"],\"VAYCzI\":[\"開始使用 InvenTree\"],\"D672yr\":[\"News Updates\"],\"jn9KFI\":[\"The latest news from InvenTree\"],\"4i3x9F\":[\"更改色彩模式\"],\"B4aZZ/\":[\"Change the color mode of the user interface\"],\"9Ogg2c\":[\"Change Language\"],\"aOzZOm\":[\"Change the language of the user interface\"],\"+s1J8k\":[\"標記為已讀\"],\"cAmrrc\":[\"Requires Superuser\"],\"v8ARYJ\":[\"This widget requires superuser permissions\"],\"q089rs\":[\"No News\"],\"FOPS6f\":[\"There are no unread news items\"],\"agYOFs\":[\"超級用户\"],\"uXsB4R\":[\"工作人員\"],\"3WlEIN\":[\"Email: \"],\"9Qs99X\":[\"Email:\"],\"ATGKLv\":[\"未定義名稱\"],\"yM9e7f\":[\"刪除圖片\"],\"R3/yR2\":[\"刪除與此項關聯的圖片?\"],\"dEgA5A\":[\"取消\"],\"t/YqKh\":[\"移除\"],\"irD+Qq\":[\"拖曳並上傳\"],\"lckouq\":[\"點擊選擇文件\"],\"44Z8LC\":[\"Image uploaded\"],\"k26cjD\":[\"Image has been uploaded successfully\"],\"ae3dey\":[\"上傳錯誤\"],\"xCJdfg\":[\"清除\"],\"hQRttt\":[\"提交\"],\"8rV56y\":[\"從現有圖片中選擇\"],\"bAiEJP\":[\"選擇圖片\"],\"5hbUXw\":[\"下載遠程圖片\"],\"BOkCZT\":[\"上傳新圖片\"],\"lnCMdg\":[\"上傳圖片\"],\"+jw/c1\":[\"刪除圖片\"],\"0yQo/k\":[\"下載圖片\"],\"83hEcK\":[\"圖片下載成功\"],\"0iczgN\":[\"Part is a template part (variants can be made from this part)\"],\"DMNUuc\":[\"Part can be assembled from other parts\"],\"06p4ek\":[\"Part can be used in assemblies\"],\"kO7b8p\":[\"Part stock is tracked by serial number\"],\"JSWE8U\":[\"Part can be purchased from external suppliers\"],\"CPLZbu\":[\"Part can be sold to customers\"],\"2MwUq+\":[\"Part is virtual (not a physical part)\"],\"OTzCVK\":[\"圖片上傳失敗\"],\"zzDlyQ\":[\"操作成功\"],\"AGZmwV\":[\"圖片已經上傳成功\"],\"FZvELs\":[\"備註保存成功\"],\"vBI46M\":[\"保存記事失敗\"],\"WC5d6R\":[\"Error Saving Notes\"],\"jZKAOq\":[\"Disable Editing\"],\"9F3QxH\":[\"保存備註\"],\"A7t6PY\":[\"Close Editor\"],\"nYrVJr\":[\"啓用編輯\"],\"nWSd91\":[\"Preview Notes\"],\"bmmD8r\":[\"Edit Notes\"],\"EWPtMO\":[\"代碼\"],\"HxuuQd\":[\"Failed to parse error response from server.\"],\"DnCO2h\":[\"預覽不可用,點擊\\\"重新加載預覽\\\"。\"],\"yz4FE1\":[\"PDF 預覽\"],\"AK4HwH\":[\"加載模板時出錯\"],\"1khwzo\":[\"保存模板時出錯\"],\"wWZgjk\":[\"Could not load the template from the server.\"],\"wYQmW6\":[\"Save & Reload preview?\"],\"1xlsgl\":[\"保存並重新加載預覽\"],\"Jsx2cQ\":[\"您確定要保存並重新加載預覽嗎?\"],\"3UWPPc\":[\"要渲染預覽效果,需要在服務器上用您的修改替換當前模板,如果標籤正在使用中,可能會損壞標籤。您想繼續嗎?\"],\"ckHR23\":[\"保存並重新加載\"],\"KMIjmd\":[\"預覽已更新\"],\"NyL8gD\":[\"預覽已成功更新。\"],\"ruaSzz\":[\"Save & Reload preview\"],\"TJRAGK\":[\"重新加載預覽\"],\"Imj0Wf\":[\"使用當前存儲服務器的模板\"],\"+Vw6KN\":[\"保存當前模板並重新加載預覽\"],\"LuBSrw\":[\"to preview\"],\"zCB4kU\":[\"選擇預覽實例\"],\"FepgSX\":[\"渲染模板時出錯\"],\"AOPUbq\":[\"客户端錯誤\"],\"yuzYd9\":[\"客户端發生錯誤\"],\"jUhHNc\":[\"狀態代碼\"],\"v2XJD+\":[\"返回索引頁\"],\"vYV5VB\":[\"未認證\"],\"5a3xiK\":[\"您尚未登錄。\"],\"boJlGf\":[\"無法找到頁面\"],\"CcD0eu\":[\"此頁面不存在\"],\"JUwB5j\":[\"權限受限\"],\"H//rsn\":[\"您沒有權限查看此網頁。\"],\"iSWuCp\":[\"服務器錯誤\"],\"vB3crB\":[\"服務器出錯。\"],\"3X1ZLb\":[\"表單錯誤\"],\"rl7FGt\":[\"Form Errors Exist\"],\"nx/5z+\":[\"一個或多個表單字段存在錯誤\"],\"EkH9pt\":[\"更新\"],\"cnGeoo\":[\"刪除\"],\"jCsNQS\":[\"Check your your input and try again.\"],\"rxWA39\":[\"Welcome back!\"],\"zM9Wd+\":[\"Login successfull\"],\"6cPKtu\":[\"登錄成功\"],\"uKMMk4\":[\"登錄成功\"],\"yfblq9\":[\"Mail delivery successfull\"],\"4GKuCs\":[\"登錄失敗\"],\"tnaYa/\":[\"請檢查您的輸入並重試。\"],\"XAIcYu\":[\"郵件發送成功\"],\"R2JMfc\":[\"請檢查您的收件箱以查看登錄鏈接。如果您有賬户,您將收到登錄鏈接。如未收到,請檢查郵箱垃圾箱。\"],\"MMJM0z\":[\"郵件發送失敗\"],\"zTZjMy\":[\"或繼續使用其他方法\"],\"7sNhEz\":[\"使用者帳號\"],\"k1RkIL\":[\"你的用户名\"],\"8ZsakT\":[\"密碼\"],\"9TO8nT\":[\"您的密碼\"],\"XlWstl\":[\"I will use username and password\"],\"RfwZxd\":[\"重置密碼\"],\"O3oNi5\":[\"郵箱\"],\"Wr5sDQ\":[\"我們將向您發送登錄鏈接 - 如果您已註冊\"],\"7ZOmjI\":[\"給我發一封電子郵件\"],\"vZk5Sm\":[\"使用用户名和密碼\"],\"ADVQ46\":[\"登錄\"],\"i/TzEU\":[\"發送電子郵件\"],\"lpIMne\":[\"Passwords do not match\"],\"EoCs7m\":[\"註冊成功\"],\"n2c6Ul\":[\"請確認您的電子郵件地址以完成註冊\"],\"ccnxuA\":[\"輸入錯誤\"],\"SxviKF\":[\"Check your input and try again. \"],\"kXXdWU\":[\"此將用於確認\"],\"NK5XEe\":[\"密碼重複\"],\"R1OtIL\":[\"再次輸入密碼\"],\"fgLNSM\":[\"註冊\"],\"IES56a\":[\"或使用 SSO\"],\"Ai2U7L\":[\"主機\"],\"6YtxFj\":[\"名稱\"],\"yWMzcH\":[\"這裏沒有人...\"],\"UYWLpE\":[\"添加主機\"],\"tfDRzk\":[\"保存\"],\"GG8+B2\":[\"Select destination instance\"],\"/PzyUK\":[\"Select Server\"],\"AA2j+t\":[\"Edit host options\"],\"uqEJlE\":[\"Edit possible host options\"],\"sKRtVy\":[\"Save host selection\"],\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker</0> (\",[\"0\"],\"), <1>plugins</1>\",[\"1\"]],\"sGH11W\":[\"服務器\"],\"eE0JZ4\":[\"版本\"],\"8XeFzA\":[\"API 版本\"],\"ohUJJM\":[\"插件\"],\"RxzN1M\":[\"已啓用\"],\"E/QGRL\":[\"Disabled\"],\"3J7l5w\":[\"Worker\"],\"NnvXp5\":[\"已停止\"],\"RiQMUh\":[\"Running\"],\"FMGfGf\":[\"未選擇圖標\"],\"b2vAoQ\":[\"未分類\"],\"YIix5Y\":[\"搜索...\"],\"mkvLrG\":[\"選擇分類\"],\"SpVrYn\":[\"選擇包\"],\"ak3DfO\":[[\"0\"],\" 個圖標\"],\"A1taO8\":[\"搜尋\"],\"yQE2r9\":[\"正在加載\"],\"AxPAXW\":[\"找不到結果\"],\"cBQBGb\":[\"表格需要 modelRenderer 條目\"],\"zVD5Ip\":[\"無可用條目\"],\"3GFHmF\":[\"Add new row\"],\"oDodff\":[\"Select image\"],\"sGeXL3\":[\"縮圖\"],\"fawxGh\":[\"導入行\"],\"SdvoV5\":[\"請稍候,數據正在導入\"],\"aydx5i\":[\"導入數據時發生錯誤\"],\"bo3Q/V\":[\"編輯數據\"],\"f2AJjl\":[\"刪除行\"],\"IqKCNQ\":[\"行\"],\"H14AdY\":[\"行包含錯誤\"],\"g3UF2V\":[\"同意\"],\"nfagfM\":[\"有效\"],\"p385PV\":[\"按行驗證狀態篩選\"],\"bD8I7O\":[\"已完成\"],\"ytCibL\":[\"按行完成狀態篩選\"],\"Fgr3ay\":[\"導入選定的行\"],\"6dO0jk\":[\"處理數據中\"],\"Vw8l6h\":[\"發生錯誤\"],\"TJu1/1\":[\"選擇列,或留空忽略此字段。\"],\"mT7k1w\":[\"Select a column from the data file\"],\"Wew5xr\":[\"Map data columns to database fields\"],\"TEAVx8\":[\"Imported Column Name\"],\"ojDp4A\":[\"忽略該字段\"],\"AHjxLx\":[\"將數據列映射到數據庫字段\"],\"Y+Sfcf\":[\"接受列映射\"],\"3mVQ03\":[\"數據庫字段\"],\"Us9epU\":[\"字段描述\"],\"qsUkVg\":[\"導入列\"],\"aQ8swY\":[\"默認值\"],\"IQ3gAw\":[\"上傳文件\"],\"KXVPhI\":[\"映射列\"],\"FhMhTR\":[\"導入數據\"],\"eHQfWJ\":[\"處理數據\"],\"b8ESNU\":[\"完成導入\"],\"Lcq+IU\":[\"Cancel import session\"],\"4fgz8U\":[\"導入完畢\"],\"zdT9Dy\":[\"數據已成功導入\"],\"yz7wBu\":[\"關閉\"],\"SC1Cur\":[\"未知狀態\"],\"+6NHN9\":[\"導入會話狀態未知\"],\"CTRRU5\":[\"正在導入數據\"],\"JT9Hk8\":[\"導入記錄\"],\"drGZDS\":[\"導入的行\"],\"l1p940\":[\"Imported rows\"],\"0zpgxV\":[\"選項\"],\"3GmetT\":[\"Link custom barcode\"],\"heU0Hk\":[\"條碼操作\"],\"mYTVOy\":[\"View Barcode\"],\"PuPuVa\":[\"查看條碼\"],\"3Bbgw2\":[\"關聯二維碼\"],\"utafdp\":[\"將自定義條碼鏈接到此項目\"],\"AlfG1i\":[\"解綁自定義條碼鏈接\"],\"ePK91l\":[\"編輯\"],\"Qpg4KV\":[\"編輯項目\"],\"ZatbPe\":[\"刪除項目\"],\"YJMNeo\":[\"掛起\"],\"euc6Ns\":[\"複製\"],\"QXHPgY\":[\"重複項目\"],\"eelNjA\":[\"Scan barcode data here using barcode scanner\"],\"QcKPg2\":[\"Toggle color scheme\"],\"IvkbIT\":[\"瞭解更多\"],\"29VNqC\":[\"未知錯誤\"],\"nlJhkA\":[\"An error occurred:\"],\"Qoq+GP\":[\"Read more\"],\"EdQY6l\":[\"無\"],\"DVAy0b\":[\"InvenTree Logo\"],\"k/sb6z\":[\"Select language\"],\"cUyJH1\":[\"此信息僅供員工使用\"],\"3TnJRX\":[\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\"],\"etqXdW\":[\"PLH\"],\"7UvbG+\":[\"InvenTree 版本\"],\"DN+WU3\":[\"Your InvenTree version status is\"],\"w4AvPz\":[\"Python 版本\"],\"g27hpz\":[\"Django 版本\"],\"wh0+YJ\":[\"提交哈希值\"],\"26rItp\":[\"提交日期\"],\"2dP9Tz\":[\"提交分支\"],\"/4WpyD\":[\"版本信息\"],\"Rj01Fz\":[\"鏈接\"],\"TvY/XA\":[\"文檔\"],\"PnzsrT\":[\"Source Code\"],\"lDIOek\":[\"致謝\"],\"gI5gJF\":[\"手機 App\"],\"f43Mpl\":[\"提交問題報告\"],\"28DkqT\":[\"InvenTree Documentation\"],\"Fh6/a1\":[\"View Code on GitHub\"],\"Z3HrI+\":[\"複製版本信息\"],\"1QfxQT\":[\"Dismiss\"],\"Hz3dBg\":[\"開發版\"],\"DS7OAx\":[\"已是最新版本\"],\"YXMY4w\":[\"有可用更新\"],\"4JhzII\":[\"沒有可用的許可文本\"],\"fSZVIc\":[\"未提供信息 - 這可能是服務器問題\"],\"7CwvjQ\":[\"正在加載許可證信息\"],\"NIRUL8\":[\"獲取許可信息失敗\"],\"7IJNlG\":[[\"key\"],\" 包\"],\"GU7xAr\":[\"Unknown response\"],\"3164SS\":[\"No scans yet!\"],\"RWw9Lg\":[\"Close modal\"],\"CIEoqM\":[\"實例名稱\"],\"vmmz7E\":[\"服務器版本\"],\"O4PAXt\":[\"Bebug Mode\"],\"JY5Oyv\":[\"數據庫\"],\"gri3Lv\":[\"調試模式\"],\"odYm26\":[\"服務器以調試模式運行\"],\"QS5AeO\":[\"停靠模式\"],\"ld9FQa\":[\"服務器是使用docker部署的\"],\"16gOdK\":[\"插件支持\"],\"GhZ9CI\":[\"插件支持已啓用\"],\"VL9bCO\":[\"插件支持已禁用\"],\"/yfSe4\":[\"服務器狀態\"],\"yGS9cI\":[\"健康\"],\"IueqnF\":[\"檢測到問題\"],\"/XqPnF\":[\"後台工作者\"],\"Oe/dvo\":[\"後台worker未運行\"],\"G5zNMX\":[\"電子郵件設置\"],\"QFMozt\":[\"電子郵件設置未配置\"],\"+6qJ+8\":[\"The server is running in debug mode.\"],\"Kz2rIR\":[\"The background worker process is not running.\"],\"Bb2P0T\":[\"Server Restart\"],\"ewxV3O\":[\"The server requires a restart to apply changes.\"],\"2uXaRL\":[\"Database Migrations\"],\"5aV8JX\":[\"There are pending database migrations.\"],\"iDNBZe\":[\"通知\"],\"s4BX3A\":[\"Alerts\"],\"cNfZ4r\":[\"無結果...\"],\"vERlcd\":[\"Profile\"],\"Tz0i8g\":[\"設置\"],\"Puv7+X\":[\"賬户設置\"],\"T3FM0r\":[\"Account settings\"],\"zNkWa6\":[\"系統設置\"],\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":[\"Switch to pseudo language\"],\"uTLn08\":[\"管理中心\"],\"nOhz3x\":[\"登出\"],\"N6Pxr9\":[\"View all\"],\"ZDIydz\":[\"Get started\"],\"BQDL+H\":[\"Overview over high-level objects, functions and possible usecases.\"],\"wRR604\":[\"Pages\"],\"pmRbKZ\":[\"零件\"],\"blbbPS\":[\"庫存\"],\"3ctapx\":[\"Manufacturing\"],\"UOTpFa\":[\"採購中\"],\"mUv9U4\":[\"銷售\"],\"Sxm8rQ\":[\"用户\"],\"zhrjek\":[\"羣組\"],\"ekfzWq\":[\"User Settings\"],\"UxKoFf\":[\"導航欄\"],\"7L01XJ\":[\"操作\"],\"uyJsf6\":[\"關於\"],\"onllUU\":[\"全部標記為已讀\"],\"/WA/tl\":[\"查看全部通知\"],\"t2pqHO\":[\"您沒有未讀通知\"],\"FXAptz\":[\"No Overview Available\"],\"RPZ4Cq\":[\"No overview available for this model type\"],\"XN9Er0\":[\"View all results\"],\"mO8KLE\":[\"結果\"],\"8OvYje\":[\"Remove search group\"],\"9RecCt\":[\"供應商\"],\"E0ub4Q\":[\"製造商\"],\"NihQNk\":[\"客户\"],\"Ev2r9A\":[\"No results\"],\"Dwt0g3\":[\"輸入搜索文本\"],\"C0TDNl\":[\"Refresh search results\"],\"9UYKcs\":[\"搜索選項\"],\"qkCZlJ\":[\"正則表達式搜索\"],\"roauu/\":[\"全詞搜索\"],\"hJCuaV\":[\"搜索查詢時發生錯誤\"],\"MA3x23\":[\"無結果\"],\"dTtbrX\":[\"沒有可供搜索查詢的結果\"],\"w/Sphq\":[\"附件\"],\"1DBGsz\":[\"備註\"],\"px+tn2\":[\"Locate Item\"],\"AXn3rz\":[\"Item location requested\"],\"nNlKYH\":[\"Plugin Inactive\"],\"xwdvWr\":[\"插件未激活\"],\"5HArLW\":[\"Plugin Information\"],\"Nu4oKW\":[\"描述\"],\"VbeIOx\":[\"作者\"],\"mYGY3B\":[\"日期\"],\"F6pfE9\":[\"激活\"],\"/L+cAM\":[\"軟件包名\"],\"AJd5vK\":[\"安裝路徑\"],\"++LBSt\":[\"內置\"],\"mGYa19\":[\"軟件包\"],\"eKHY3W\":[\"插件設置\"],\"BFm1Jm\":[\"插件配置\"],\"SZERkf\":[\"Error occurred while rendering plugin content\"],\"a0WacI\":[\"Plugin did not provide panel rendering function\"],\"rzAwpV\":[\"No content provided for this plugin\"],\"l+V6Ip\":[\"Error Loading Plugin\"],\"E75VEp\":[\"Error occurred while rendering plugin settings\"],\"r3oZiy\":[\"Plugin did not provide settings rendering function\"],\"t3xUfw\":[\"渲染模板編輯器時出錯。\"],\"JDFeOe\":[\"加載插件編輯器出錯\"],\"KJx0of\":[\"渲染模板預覽時出錯。\"],\"OqfJdc\":[\"加載插件預覽出錯\"],\"wOa7Q9\":[\"Invalid source or function name\"],\"HY5802\":[\"Error Loading Content\"],\"IYgnvh\":[\"Error occurred while loading plugin content\"],\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"LBTdZK\":[\"Unknown model: \",[\"model_name\"]],\"vgP+9p\":[\"零件\"],\"hAddRl\":[\"零件參數模板\"],\"UrnQgP\":[\"零件參數模板\"],\"75lDy5\":[\"零件測試模板\"],\"KevMsQ\":[\"零件測試模板\"],\"nne72x\":[\"供應商零件\"],\"FcNRrt\":[\"供應商零件\"],\"bisS0I\":[\"製造商零件\"],\"d0fBfb\":[\"製造商零件\"],\"QXANxH\":[\"零件類別\"],\"2GkbLI\":[\"零件類別\"],\"igx8Og\":[\"庫存項\"],\"Jbck4N\":[\"庫存項\"],\"adXdas\":[\"庫存地點\"],\"1eBWAw\":[\"庫存地點\"],\"DjwC2f\":[\"庫存地點類型\"],\"vkPSyZ\":[\"庫存地點類型\"],\"cE4TWF\":[\"庫存歷史記錄\"],\"rewkgt\":[\"庫存歷史記錄\"],\"iSiFYa\":[\"生產\"],\"3400Lv\":[\"生產\"],\"9TLpo1\":[\"生產行\"],\"CRYIQ0\":[\"生產行\"],\"LN2ON5\":[\"構建項目:\"],\"A7FuwR\":[\"構建多個項目\"],\"7i8j3G\":[\"公司\"],\"s2QZS6\":[\"公司\"],\"Sdfr6G\":[\"項目編碼\"],\"AklCpf\":[\"項目編碼\"],\"KxySMG\":[\"採購訂單\"],\"85Yvr2\":[\"採購訂單\"],\"Enr0Pf\":[\"採購訂單行\"],\"MXjnQS\":[\"採購訂單行\"],\"LozYBo\":[\"銷售訂單\"],\"B1TL+X\":[\"銷售訂單\"],\"qGSobR\":[\"銷售訂單配送\"],\"D/EkfS\":[\"銷售訂單配送\"],\"Z6ve1w\":[\"退貨訂單\"],\"LlTg8M\":[\"退貨訂單\"],\"Frsz7D\":[\"退貨訂單行項目\"],\"4dCpFa\":[\"退貨訂單行項目\"],\"Du6bPw\":[\"地址\"],\"bYmAV1\":[\"地址\"],\"jfC/xh\":[\"聯繫人\"],\"gVfVfe\":[\"聯繫人\"],\"LtI9AS\":[\"所有者\"],\"CYRJEX\":[\"所有者\"],\"7PzzBU\":[\"用户\"],\"L8fEEm\":[\"羣組\"],\"e5WBGh\":[\"導入會話\"],\"1dn8uK\":[\"導入會話\"],\"WT825B\":[\"Purchase Order Line Item\"],\"aKf3M5\":[\"標籤模板\"],\"0qHiFS\":[\"標籤模板\"],\"F/A+39\":[\"報告模板\"],\"SX006I\":[\"報告模板\"],\"7ybWp/\":[\"插件配置\"],\"f9cDxV\":[\"內容類型\"],\"F7Jcuy\":[\"內容類型\"],\"tTUob1\":[\"Unknown Model\"],\"ifEZiy\":[\"Selection List\"],\"2q2/qs\":[\"Selection Lists\"],\"UirGxE\":[\"錯誤\"],\"hN+9ZV\":[\"Purchase Order Line Items\"],\"rk/y41\":[\"Unknown Models\"],\"4fws5M\":[\"配送\"],\"NoNwIX\":[\"未激活\"],\"AbC1Px\":[\"無庫存\"],\"AXeJt4\":[\"序列號\"],\"VbWX2u\":[\"數量\"],\"rsx3xA\":[\"批次\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"mjN1LS\":[\"編輯設置\"],\"1onc6y\":[\"Setting \",[\"key\"],\" updated successfully\"],\"C3htzi\":[\"設置已更新\"],\"n/n6vh\":[\"成功更新設置\",[\"0\"]],\"CsUgn+\":[\"編輯設置時出錯\"],\"3CUVvD\":[\"未指定設置\"],\"N73rrp\":[\"Add table filter\"],\"ot7qsv\":[\"Clear all filters\"],\"vCSBPD\":[\"Add filter\"],\"c+xCSz\":[\"True\"],\"ocUvR+\":[\"False\"],\"jpXCTI\":[\"Add Table Filter\"],\"R39XGq\":[\"Select from the available filters\"],\"vTKklW\":[\"Substitutes\"],\"NJevqq\":[\"Validate\"],\"5PLB70\":[\"Has Available Stock\"],\"TVjR+9\":[\"Required Part\"],\"CP3D8G\":[\"Progress\"],\"1hKEom\":[\"Priority\"],\"dJW40d\":[\"Postal Code\"],\"3wV73y\":[\"City\"],\"rVjFVi\":[\"State / Province\"],\"JNCzPW\":[\"Country\"],\"R4Unfh\":[\"Courier Notes\"],\"CHyl8O\":[\"Internal Notes\"],\"ivmXEe\":[\"Address updated\"],\"BpTAq5\":[\"Address deleted\"],\"zGbOVS\":[\"Company Name\"],\"zmwvG2\":[\"Phone\"],\"GDvlUT\":[\"Role\"],\"xD2f6C\":[\"Contact updated\"],\"clZrsL\":[\"Contact deleted\"],\"v7r1k3\":[\"Are you sure you want to delete this contact?\"],\"+ql8iT\":[\"Create Contact\"],\"pDtPyd\":[\"Contact created\"],\"NBdIgR\":[\"Comment\"],\"j+lAXA\":[\"Part category updated\"],\"T/87By\":[\"Parameter\"],\"xr44aD\":[\"Part parameter updated\"],\"uiC/uu\":[\"Part parameter deleted\"],\"dfMVxh\":[\"Are you sure you want to remove this parameter?\"],\"wzEEM5\":[\"Part parameter added\"],\"hPUPHx\":[\"Choices\"],\"Iobq75\":[\"Remove parameter template\"],\"fy6/m0\":[\"Parameter template updated\"],\"RucxNX\":[\"Parameter template deleted\"],\"pN3dpU\":[\"Are you sure you want to remove this parameter template?\"],\"kwD9yQ\":[\"Create Parameter Template\"],\"aotC8W\":[\"Parameter template created\"],\"rRDi3Y\":[\"Detail\"],\"Sf8dDO\":[\"Test Name\"],\"PQb/If\":[\"Template updated\"],\"GUtJ4K\":[\"Test Template deleted\"],\"O4tSlP\":[\"Create Test Template\"],\"JcCDm9\":[\"Template created\"],\"Vssu+n\":[\"Related Part\"],\"yxfxt9\":[\"Related part added\"],\"oNps5U\":[\"Related part deleted\"],\"ZKMkzF\":[\"Are you sure you want to remove this relationship?\"],\"PQBAvb\":[\"Installation path\"],\"lDgVWA\":[\"Receive\"],\"nkUDeI\":[\"Line item updated\"],\"95PcjS\":[\"Line item added\"],\"MbRyzp\":[\"Definition\"],\"8Ps70y\":[\"Symbol\"],\"I0CAZ4\":[\"Edit custom unit\"],\"JOoGLt\":[\"Custom unit updated\"],\"2351D8\":[\"Delete custom unit\"],\"ik2+Rh\":[\"Custom unit deleted\"],\"jB4fNr\":[\"Are you sure you want to remove this custom unit?\"],\"2Aout5\":[\"Custom unit created\"],\"KiV8KV\":[\"Group updated\"],\"bcZVsY\":[\"Added group\"],\"NsoM0i\":[\"Edit project code\"],\"IKDsBC\":[\"Project code updated\"],\"imeh6U\":[\"Delete project code\"],\"XVAUxk\":[\"Project code deleted\"],\"fwToP9\":[\"Are you sure you want to remove this project code?\"],\"lCmbZd\":[\"Added project code\"],\"Uo+QM0\":[\"User permission changed successfully\"],\"bQ3dkt\":[\"Some changes might only take effect after the user refreshes their login.\"],\"CSU4Oi\":[\"Changed user active status successfully\"],\"b1oC9a\":[\"Set to \",[\"active\"]],\"spHGSX\":[\"User details for \",[\"0\"]],\"7dPNC3\":[\"Rights\"],\"0XGXZb\":[\"User updated\"],\"y+nVyK\":[\"user deleted\"],\"VikQny\":[\"Test Filter\"],\"ay6lVf\":[\"This is a test filter\"],\"v3/KVE\":[\"Stock location updated\"],\"T/IST7\":[\"Something is new: Platform UI\"],\"gSWyZa\":[\"We are building a new UI with a modern stack. What you currently see is not fixed and will be redesigned but demonstrates the UI/UX possibilities we will have going forward.\"],\"GNA6/Q\":[\"Provide Feedback\"],\"7hktsm\":[\"Getting started\"],\"jFggGL\":[\"Failed to upload image\"],\"BtQ2Mv\":[\"Notes saved\"],\"rdU729\":[\"Layout\"],\"Nw+C4g\":[\"Reset Layout\"],\"fOql7D\":[\"Stop Edit\"],\"aAIQg2\":[\"Appearance\"],\"cG3uIP\":[\"Show Boxes\"],\"00xEJ9\":[\"New Purchase Order\"],\"x3sha9\":[\"Purchase order created\"],\"wvbkAd\":[\"New Supplier Part\"],\"LjPQ/X\":[\"供應商零件已更新\"],\"84UAd6\":[\"Add to Purchase Order\"],\"WdLHOQ\":[\"Part added to purchase order\"],\"5L5j54\":[\"Select supplier part\"],\"vCJjUj\":[\"New supplier part\"],\"pfANUH\":[\"Select purchase order\"],\"ilPjST\":[\"New purchase order\"],\"T0PG4M\":[\"Add to selected purchase order\"],\"RHAB56\":[\"No parts selected\"],\"J6mnho\":[\"No purchaseable parts selected\"],\"sUQHeO\":[\"Parts Added\"],\"s2oix5\":[\"All selected parts added to a purchase order\"],\"hqPdIW\":[\"You must select at least one part to order\"],\"f4INHl\":[\"Supplier part is required\"],\"siOHHM\":[\"Quantity is required\"],\"EG74zf\":[\"Invalid part selection\"],\"6FCFII\":[\"Please correct the errors in the selected parts\"],\"3u5ICq\":[\"Order Parts\"],\"8HV3WN\":[\"阿拉伯語\"],\"KhEBDR\":[\"保加利亞語\"],\"w9VTXG\":[\"捷克語\"],\"Fo2vDn\":[\"丹麥語\"],\"DDcvSo\":[\"德語\"],\"CZXzs4\":[\"希臘語\"],\"lYGfRP\":[\"英語\"],\"65A04M\":[\"西班牙語\"],\"xB5BGV\":[\"西班牙語(墨西哥)\"],\"l2pzUk\":[\"愛沙尼亞語\"],\"A64kM8\":[\"波斯語\"],\"USZ2N6\":[\"芬蘭語\"],\"nLC6tu\":[\"法語\"],\"3oTCgM\":[\"希伯來語\"],\"tGjibo\":[\"印地語\"],\"mkWad2\":[\"匈牙利語\"],\"Lj7sBL\":[\"意大利語\"],\"dFtidv\":[\"日語\"],\"h6S9Yz\":[\"韓語\"],\"Ot2qtY\":[\"立陶宛語\"],\"/0YsGP\":[\"Latvian\"],\"KIjvtr\":[\"荷蘭語\"],\"1IipHp\":[\"挪威語\"],\"trnWaw\":[\"波蘭語\"],\"MOERNx\":[\"葡萄牙語\"],\"KCh9+J\":[\"葡萄牙語(巴西)\"],\"uJc01W\":[\"羅馬尼亞語\"],\"nji0/X\":[\"俄語\"],\"paESr6\":[\"Slovak\"],\"LSdcWW\":[\"斯洛語尼亞語\"],\"9aBtdW\":[\"Serbian\"],\"UaISq3\":[\"瑞典語\"],\"SUr44j\":[\"泰語\"],\"Kz91g/\":[\"土耳其語\"],\"V9+2pH\":[\"烏克蘭語\"],\"fROFIL\":[\"越南語\"],\"6imsQS\":[\"中文 (簡體)\"],\"DM4gBB\":[\"中文 (繁體)\"],\"i0qMbr\":[\"Home\"],\"kwda2l\":[\"跳轉到 InvenTree 儀表板\"],\"hqbo9J\":[\"訪問文檔以瞭解更多關於 InvenTree\"],\"iDxamh\":[\"關於 InvenTree\"],\"Q5S3DY\":[\"About this Inventree instance\"],\"gfhzPz\":[\"關於 InvenTree 組織\"],\"mHGdhG\":[\"服務器信息\"],\"Ckl0UI\":[\"About this InvenTree instance\"],\"I/Xnkt\":[\"許可信息\"],\"L23uA9\":[\"服務依賴關係許可\"],\"rmlxV1\":[\"打開導航\"],\"xIiHCw\":[\"打開主導航菜單\"],\"9j/kJy\":[\"Scan a barcode or QR code\"],\"txYotp\":[\"轉到管理中心\"],\"LcKNFQ\":[\"Latest Parts\"],\"eHUZsJ\":[\"BOM Waiting Validation\"],\"ZopSbj\":[\"Recently Updated\"],\"Onj2Pw\":[\"Depleted Stock\"],\"ZOsmSm\":[\"Expired Stock\"],\"kc9cAF\":[\"Stale Stock\"],\"zLhIiS\":[\"Build Orders In Progress\"],\"WsHr9R\":[\"Outstanding Purchase Orders\"],\"gyZThB\":[\"Outstanding Sales Orders\"],\"XzTq3p\":[\"Current News\"],\"tMMrz4\":[\"InvenTree Demo\"],\"vu8/DU\":[\"Local Server\"],\"RkXlPZ\":[\"GitHub\"],\"kc+zZA\":[\"Demo\"],\"0LrFTO\":[\"Playground\"],\"kyAi7k\":[\"Instance\"],\"vHeNia\":[\"InvenTree\"],\"OZtEcz\":[\"API\"],\"aW0h/b\":[\"InvenTree API 文檔\"],\"BOAupq\":[\"開發者手冊\"],\"kUcL4g\":[\"InvenTree 開發者手冊\"],\"/lDBHm\":[\"FAQ\"],\"a3pVqb\":[\"常見問題\"],\"52Z0/R\":[\"GitHub Repository\"],\"IRQJed\":[\"InvenTree source code on GitHub\"],\"tBjIo1\":[\"Licenses for packages used by InvenTree\"],\"yPiRbD\":[\"系統信息\"],\"snyG+w\":[\"Licenses\"],\"v0DscP\":[\"Licenses for dependencies of the InvenTree software\"],\"nRKDyo\":[\"About the InvenTree Project\"],\"2AZart\":[\"Open sourcea\"],\"v+Wp++\":[\"Open source\"],\"fu2+tK\":[\"Start page of your instance.\"],\"pTE4nz\":[\"This Pokémon’s cry is very loud and distracting\"],\"S+oekQ\":[\"This Pokémon’s cry is very loud and distracting and more and more and more\"],\"kNyJAF\":[\"Profile page\"],\"CFYxhi\":[\"User attributes and design settings.\"],\"uP4V6I\":[\"Free for everyone\"],\"dyMOjI\":[\"The fluid of Smeargle’s tail secretions changes\"],\"PrR19h\":[\"View for interactive scanning and multiple actions.\"],\"d1WpzX\":[\"The fluid of Smeargle’s tail secretions changes in the intensity\"],\"1ekmeV\":[\"abc\"],\"Wj+wQW\":[\"Random image\"],\"sGi2sH\":[\"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore the feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore the feugait nulla facilisi. Name liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assume. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores duo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet clita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero voluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat. Consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor\"],\"K+7Exx\":[\"Yanma is capable of seeing 360 degrees without\"],\"D9kxcs\":[\"The shell’s rounded shape and the grooves on its.\"],\"ZlwDi6\":[\"Analytics\"],\"Ntb/Ja\":[\"This Pokémon uses its flying ability to quickly chase\"],\"q+Lv8f\":[\"Combusken battles with the intensely hot flames it spews\"],\"8uQpHD\":[\"Add File\"],\"V4WsyL\":[\"Add Link\"],\"TzSMET\":[\"File added\"],\"GvlLvd\":[\"Link added\"],\"xtmR+6\":[\"Edit File\"],\"gDx5MG\":[\"Edit Link\"],\"TKcCLO\":[\"File updated\"],\"AEUkAQ\":[\"Link updated\"],\"iDEbsu\":[\"Attachment deleted\"],\"1oL0IJ\":[\"Are you sure you want to delete this attachment?\"],\"GyFGex\":[\"Remove output\"],\"gILim+\":[\"生產產出\"],\"uAQUqI\":[\"狀態\"],\"0iR9fu\":[\"完成生產輸出\"],\"N3avUJ\":[\"生產已完成\"],\"69qbY/\":[\"報廢生產輸出\"],\"C+tSd4\":[\"生產已完成\"],\"duNUx4\":[\"Selected build outputs will be deleted\"],\"xS5DxW\":[\"取消生產輸出\"],\"cdFWk4\":[\"生產已完成\"],\"A9JO1q\":[\"Remove line\"],\"A/ybx7\":[\"已分配\"],\"/00Ond\":[\"來源地點\"],\"IArqwk\":[\"選擇分配庫存的源位置\"],\"L1LMmH\":[\"分配庫存\"],\"23SrHL\":[\"分配的庫存項目\"],\"E7xvdq\":[\"Company updated\"],\"7VIaU3\":[\"已訂閲\"],\"wyHaGh\":[\"Subscribe to notifications for this part\"],\"22eAtb\":[\"Create Part\"],\"LDesI6\":[\"Part created\"],\"+g4LWF\":[\"Part updated\"],\"oATGL2\":[\"上級零件類別\"],\"8Qu8gC\":[\"Subscribe to notifications for this category\"],\"W778m0\":[\"Assign Batch Code and Serial Numbers\"],\"K5pQC8\":[\"Assign Batch Code\"],\"RL9/J8\":[\"選擇位置\"],\"LNKjyK\":[\"已選擇項目目的地\"],\"q3WAIO\":[\"已選擇零件類別默認位置\"],\"K1Mf+T\":[\"已選擇接收庫存位置\"],\"ALFlH9\":[\"已選擇默認位置\"],\"G8Z9OY\":[\"Assign Batch Code\",[\"0\"]],\"zMFs5V\":[\"Remove item from list\"],\"TJYLHZ\":[\"設置位置\"],\"okjJiB\":[\"Set Expiry Date\"],\"O7MZ1G\":[\"調整封包\"],\"Gt4cm5\":[\"更改狀態\"],\"nxv8yE\":[\"添加備註\"],\"wJijgU\":[\"位置\"],\"GFtCDL\":[\"Serial numbers\"],\"j9qXAA\":[\"存儲在默認位置\"],\"Co8OYS\":[\"Store at line item destination \"],\"NOgnJu\":[\"Store at line item destination\"],\"CKgjtC\":[\"存儲已收到的庫存\"],\"Vea6Aj\":[\"批號\"],\"s848yO\":[\"Enter batch code for received items\"],\"VzQT2x\":[\"序列號\"],\"ig+UDq\":[\"Enter serial numbers for received items\"],\"uaSvqt\":[\"有效期至\"],\"ICgiSv\":[\"Enter an expiry date for received items\"],\"z1u8Wy\":[\"Receive line items\"],\"pD/Ew0\":[\"包裝\"],\"KiJn9B\":[\"備註\"],\"y90mqQ\":[\"庫存單位 (SKU)\"],\"fZ5Vnu\":[\"已接收\"],\"MXlhj9\":[\"接收行項目\"],\"zFmwOr\":[\"Items received\"],\"iwAbO1\":[\"接收物品\"],\"9U/ZsL\":[\"已收到庫存物品\"],\"iAY2dt\":[\"Next batch code\"],\"TVYdHj\":[\"下一個序列號\"],\"4xXnZr\":[\"Create Stock Item\"],\"qyS7x9\":[\"將給定的數量添加為包,而不是單個項目\"],\"gqrPgW\":[\"Stock item updated\"],\"LWFE8j\":[\"輸入此庫存項的初始數量\"],\"0dR85g\":[\"輸入新庫存的序列號(或留空)\"],\"Y3/0dR\":[\"庫存狀態\"],\"bJLEQT\":[\"編輯庫存項\"],\"B+pzHp\":[\"選擇要安裝的零件\"],\"AEaskR\":[\"Confirm Stock Transfer\"],\"Z3FXyt\":[\"正在加載...\"],\"b+SPUR\":[\"移動到默認位置\"],\"QWdKwH\":[\"移動\"],\"zn38D/\":[\"入庫\"],\"m16xKo\":[\"添加\"],\"wBMjJ2\":[\"總計\"],\"smUxso\":[\"添加庫存\"],\"2kGS2K\":[\"Stock added\"],\"dxvf6V\":[\"移除庫存\"],\"uMaw0F\":[\"Stock removed\"],\"9efe+k\":[\"轉移庫存\"],\"02r6MH\":[\"Stock transferred\"],\"n/p2QJ\":[\"庫存數量\"],\"iEFfQA\":[\"Stock counted\"],\"Y+vtBl\":[\"更改庫存狀態\"],\"dbA8fL\":[\"Stock status changed\"],\"z5kN6j\":[\"合併庫存\"],\"BSKV/s\":[\"Stock merged\"],\"i2FExn\":[\"Assign Stock to Customer\"],\"zTh3Rb\":[\"Stock assigned to customer\"],\"khKVoc\":[\"刪除庫存項\"],\"9Y/rsA\":[\"Stock deleted\"],\"9P2CtI\":[\"上級庫存地點\"],\"ef6vAZ\":[\"Entries\"],\"f/qYPq\":[\"List of entries to choose from\"],\"wMHvYH\":[\"值\"],\"87a/t/\":[\"Label\"],\"UFBeQV\":[\"錯誤的請求\"],\"dA/8If\":[\"未授權\"],\"7JBW66\":[\"禁止訪問\"],\"KPx1UV\":[\"未找到\"],\"kfW0Vs\":[\"Method not allowed\"],\"OIYbyY\":[\"Internal server error\"],\"8/1bpV\":[\"Error fetching token from server.\"],\"FKQcYZ\":[\"Logout successfull\"],\"aJhI/3\":[\"See you soon.\"],\"Py+E6e\":[\"Logout successful\"],\"AOxl9K\":[\"You have been logged out\"],\"iVj6ge\":[\"Already logged in\"],\"KOiVrG\":[\"There is a conflicting session on the server for this browser. Please logout of that first.\"],\"FR/+0K\":[\"Found an existing login - using it to log you in.\"],\"YLtp/8\":[\"Found an existing login - welcome back!\"],\"nXipgk\":[\"已登出\"],\"DMjmJd\":[\"已成功登出\"],\"GzNGp2\":[\"Language changed\"],\"e43Nxe\":[\"Your active language has been changed to the one set in your profile\"],\"HDhZvn\":[\"Theme changed\"],\"qNLnpL\":[\"Your active theme has been changed to the one set in your profile\"],\"eX0txO\":[\"查看收件箱中的重置鏈接。這隻有在您有賬户的情況下才會起作用。也請檢查垃圾郵件。\"],\"WhimMi\":[\"重置失敗\"],\"bNsW3s\":[\"已登錄\"],\"IBfR77\":[\"已成功登入\"],\"Ov7CoV\":[\"Failed to set up MFA\"],\"Hw2MHB\":[\"密碼已設置\"],\"+p8fKY\":[\"密碼設置成功。您現在可以使用新密碼登錄\"],\"KEnIWF\":[\"Password could not be changed\"],\"+FTw6N\":[\"The two password fields didn’t match\"],\"IrZaAn\":[\"Password Changed\"],\"x5LTam\":[\"Form method not provided\"],\"Y/uvnA\":[\"Response did not contain action data\"],\"Pya8ub\":[\"Invalid Form\"],\"D6wyts\":[\"method parameter not supplied\"],\"ipE2p4\":[\"尚未實現\"],\"WvSApV\":[\"此功能尚未實現\"],\"sJK6pq\":[\"Permission denied\"],\"3WjGlZ\":[\"您無權執行此操作。\"],\"J7PX+R\":[\"無效返回碼\"],\"78bD8l\":[\"服務器返回狀態 \",[\"returnCode\"]],\"xY9s5E\":[\"超時\"],\"g/KPkG\":[\"請求已超時\"],\"gAwkCm\":[\"Exporting Data\"],\"CEVW38\":[\"Export Data\"],\"GS+Mus\":[\"Export\"],\"TCOQbo\":[\"Process completed successfully\"],\"gzjOvt\":[\"Process failed\"],\"Jurdjg\":[\"項目已創建\"],\"36MpJH\":[\"項目已更新\"],\"GsfE+I\":[\"Items Updated\"],\"rmhQEk\":[\"Update multiple items\"],\"lUQRkn\":[\"項目已刪除\"],\"XtpCjZ\":[\"確實要刪除此項目嗎?\"],\"S1C0yM\":[\"最新序列號\"],\"KbS2K9\":[\"Reset Password\"],\"DCKkhU\":[\"Current Password\"],\"fR9laE\":[\"Enter your current password\"],\"7vhWI8\":[\"New Password\"],\"0StR7t\":[\"Enter your new password\"],\"yjkELF\":[\"Confirm New Password\"],\"479pdJ\":[\"Confirm your new password\"],\"7VpPHA\":[\"Confirm\"],\"ZlJcKz\":[\"Log off\"],\"ps9k8Y\":[\"檢查您是否已經登錄\"],\"bX1aQ5\":[\"未選擇\"],\"BL4vL0\":[\"Welcome, log in below\"],\"qJ5FUT\":[\"Register below\"],\"z0t9bb\":[\"登錄\"],\"wIGnZX\":[\"Logging you in\"],\"ln9/n9\":[\"沒有帳户?\"],\"cLQciJ\":[\"Logging out\"],\"/2Ju3n\":[\"Multi-Factor Login\"],\"AJZ3UU\":[\"Multi-Factor Authentication\"],\"e4JDhv\":[\"TOTP Code\"],\"l/R/GX\":[\"Enter your TOTP or recovery code\"],\"sQia9P\":[\"Log in\"],\"Getzi2\":[\"MFA Setup Required\"],\"M3UsIV\":[\"Add TOTP\"],\"jZUk0D\":[\"返回登錄界面\"],\"F+gz9Z\":[\"Send mail\"],\"Z6LIBa\":[\"Key invalid\"],\"d98eu+\":[\"You need to provide a valid key to set a new password. Check your inbox for a reset link.\"],\"eV2FZ+\":[\"Token invalid\"],\"V/e7nf\":[\"設置新密碼\"],\"uAHzZQ\":[\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\"],\"JJjFgL\":[\"The desired new password\"],\"c0MM5W\":[\"Send Password\"],\"+5xxir\":[\"No token provided\"],\"KuLTFa\":[\"You need to provide a token to set a new password. Check your inbox for a reset link.\"],\"aUBlDM\":[\"You need to provide a valid key.\"],\"wCKkSr\":[\"Verify Email\"],\"uSMfoN\":[\"Verify\"],\"TpqeIh\":[\"錯誤:\",[\"0\"]],\"MVDSZK\":[\"發生意外錯誤。\"],\"b3ilvM\":[\"Sorry, an unexpected error has occurred.\"],\"edpMcF\":[\"Autoupdate\"],\"0s/I4H\":[\"This page is a replacement for the old start page with the same information. This page will be deprecated and replaced by the home page.\"],\"2DfxO0\":[\"Welcome to your Dashboard\",[\"0\"]],\"ZLvUR5\":[\"This page is a showcase for the possibilities of Platform UI.\"],\"hFwWnI\":[\"Notification Settings\"],\"50nnEk\":[\"Global Settings\"],\"c6Mp+A\":[\"Settings for the current user\"],\"EBBDLp\":[\"Home Page Settings\"],\"d42r7C\":[\"Search Settings\"],\"o0PqeM\":[\"Label Settings\"],\"nutMuO\":[\"Report Settings\"],\"VzYWwh\":[\"Settings for the notifications\"],\"0fzps+\":[\"Global Server Settings\"],\"5u2+so\":[\"Global Settings for this instance\"],\"S60KP9\":[\"Server Settings\"],\"R+R5Sa\":[\"Login Settings\"],\"NP6Hng\":[\"Barcode Settings\"],\"H2tPtY\":[\"Part Settings\"],\"axC9dx\":[\"Pricing Settings\"],\"PN5rCS\":[\"Stock Settings\"],\"1PGWAQ\":[\"Build Order Settings\"],\"WObPen\":[\"Purchase Order Settings\"],\"H7F6Gx\":[\"Sales Order Settings\"],\"Ud411M\":[\"Plugin Settings for this instance\"],\"pkdjGY\":[\"Data is current beeing loaded\"],\"gIQQwD\":[\"Failed to load\"],\"UbtqIw\":[\"Show internal names\"],\"UIwUzc\":[\"Input \",[\"0\"],\" is not known\"],\"J9kB0C\":[\"Saved changes \",[\"0\"]],\"EOyF2I\":[\"Changed to \",[\"0\"]],\"pa6s4O\":[\"Error while saving \",[\"0\"]],\"/JfytP\":[\"Error was \",[\"err\"]],\"IBGfrY\":[\"Plugin: \",[\"0\"]],\"Se2ost\":[\"Method: \",[\"0\"]],\"nDqlBl\":[\"Userinfo\"],\"PkcDO7\":[\"Username: \",[\"0\"]],\"gDIqhx\":[\"Design <0/>\"],\"6IETQS\":[\"Item already scanned\"],\"DFEq8c\":[\"API Error\"],\"beMwe+\":[\"Failed to fetch instance data\"],\"72IS8c\":[\"Scan Error\"],\"dQStih\":[\"所選元素未知\"],\"Oik3bo\":[\"選擇多個對象類型\"],\"oGDiXN\":[\"Actions ...\"],\"9dx+P4\":[\"Actions ... \"],\"kSFUZe\":[\"Barcode Scanning\"],\"n5kv5D\":[\"Barcode Input\"],\"bwRvnp\":[\"操作\"],\"65vtJ8\":[\"No Items Selected\"],\"pS7MTY\":[\"Manual input\"],\"mB/UHi\":[\"Scan and select items to perform actions\"],\"29Om2/\":[\"Image Barcode\"],\"sQhVFe\":[\"已選擇 \",[\"0\"],\" 項\"],\"Ku9qqT\":[\"Scanned Items\"],\"RlLl3G\":[\"Actions for \",[\"0\"]],\"T2Wq4D\":[\"Scan Page\"],\"cXiEKg\":[\"This page can be used for continuously scanning items and taking actions on them.\"],\"70W2+l\":[\"Toggle Fullscreen\"],\"qBZttg\":[\"Select the input method you want to use to scan items.\"],\"XU5AOg\":[\"Input\"],\"kY/87m\":[\"Select input method\"],\"ow3fug\":[\"Nothing found\"],\"66J/c0\":[\"Depending on the selected parts actions will be shown here. Not all barcode types are supported currently.\"],\"U+sonC\":[\"General Actions\"],\"H8H7u6\":[\"Lookup part\"],\"sliuzR\":[\"Open Link\"],\"mM7dgZ\":[\"History is locally kept in this browser.\"],\"s9lCxX\":[\"The history is kept in this browser's local storage. So it won't be shared with other users or other devices but is persistent through reloads. You can select items in the history to perform actions on them. To add items, scan/enter them in the Input area.\"],\"GAgzAK\":[\"Delete History\"],\"nB43gC\":[\"No history\"],\"wdxz7K\":[\"Source\"],\"PvB8gr\":[\"Scanned at\"],\"mPrJo6\":[\"Enter item serial or data\"],\"gUm1Y0\":[\"Add dummy item\"],\"UHot+L\":[\"Error while getting camera\"],\"CMQ09J\":[\"Scanning\"],\"Fg9r/3\":[\"Not scanning\"],\"QuNKRX\":[\"Select Camera\"],\"//An38\":[\"Edit User Information\"],\"3mLnBk\":[\"Edit Account Information\"],\"kKNzpm\":[\"User details updated\"],\"4ZEEyG\":[\"Account details updated\"],\"14H4zc\":[\"User Actions\"],\"GTOcxw\":[\"Edit User\"],\"V1EGGU\":[\"First name\"],\"2gHjVM\":[\"Set Password\"],\"yXWeK6\":[\"Edit Profile Information\"],\"1ZaQUH\":[\"Last name\"],\"c4/7h4\":[\"Set User Password\"],\"JOUEkZ\":[\"First name: \",[\"0\"]],\"/C3Zg+\":[\"Profile details updated\"],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"kODvZJ\":[\"名\"],\"UXBCwc\":[\"姓\"],\"7eE++L\":[\"First name:\"],\"0ib+Ql\":[\"工作人員訪問\"],\"FSN9CU\":[\"Last name:\"],\"0gS7M5\":[\"顯示名稱\"],\"p/78dY\":[\"Position\"],\"+zy2Nq\":[\"Type\"],\"LB3Kje\":[\"Organisation\"],\"O5tQDe\":[\"Primary Group\"],\"AQoSYJ\":[\"Account Details\"],\"adqezM\":[\"Account Actions\"],\"9B436y\":[\"Edit Account\"],\"VhMDMg\":[\"Change Password\"],\"QzqxNm\":[\"Change User Password\"],\"pmie1A\":[\"Profile Details\"],\"QJQd1J\":[\"Edit Profile\"],\"J/hVSQ\":[[\"0\"]],\"8VEDbV\":[\"Secret\"],\"+RO3kt\":[\"One-Time Password\"],\"6mSv4V\":[\"Enter the TOTP code to ensure it registered correctly\"],\"sGV/QR\":[\"Single Sign On Accounts\"],\"jheQzv\":[\"Email Addresses\"],\"OI/Njf\":[\"Single Sign On\"],\"gzRIYb\":[\"Multifactor\"],\"Sm3zWc\":[\"Single Sign On is not enabled for this server\"],\"GYQmzM\":[\"未啓用\"],\"dlCBek\":[\"Single Sign On is not enabled for this server \"],\"3JPMTK\":[\"Multifactor authentication is not configured for your account\"],\"arnfQh\":[\"Access Tokens\"],\"6+wumt\":[\"Error while updating email\"],\"0X7aCu\":[\"Not Configured\"],\"lVUxBy\":[\"Currently no email addresses are registered.\"],\"Xfy/DT\":[\"以下電子郵件地址與您的賬户相關聯:\"],\"T/R+Qz\":[\"主要的\"],\"QDEWii\":[\"已驗證\"],\"VBTGXl\":[\"未驗證\"],\"g/Kbij\":[\"設為首選\"],\"+GoJJW\":[\"重新發送驗證\"],\"oLztc+\":[\"添加電子郵件地址\"],\"Y/cuRF\":[\"郵箱\"],\"JqLqpm\":[\"郵箱地址\"],\"/NCeM2\":[\"Error while adding email\"],\"0+CYPj\":[\"添加電子郵件\"],\"vwfjas\":[\"Provider has not been configured\"],\"SDND4q\":[\"Not configured\"],\"fkCzQP\":[\"There are no social network accounts connected to this account.\"],\"B1uCAI\":[\"You can sign in to your account using any of the following third party accounts\"],\"KbNsE0\":[\"There are no providers connected to this account.\"],\"+b3H4M\":[\"You can sign in to your account using any of the following providers\"],\"iDH5VM\":[\"Remove Provider Link\"],\"jpctdh\":[\"View\"],\"FiVzC7\":[\"No multi-factor tokens configured for this account\"],\"rG8/7P\":[\"Last used at\"],\"YeUQpx\":[\"Created at\"],\"QgQV6q\":[\"Recovery Codes\"],\"jhIjb1\":[\"Unused Codes\"],\"l9ssQ3\":[\"Used Codes\"],\"mNRlLY\":[\"Error while registering recovery codes\"],\"Kvajkr\":[\"TOTP\"],\"JIT9Ku\":[\"Time-based One-Time Password\"],\"jw8/rF\":[\"One-Time pre-generated recovery codes\"],\"sNaLCG\":[\"Add Token\"],\"/CUha+\":[\"Register TOTP Token\"],\"cthRSh\":[\"Error registering TOTP token\"],\"NgaR6B\":[\"Enter your password\"],\"Wcm4Tk\":[\"Token is used - no actions\"],\"V9/zZt\":[\"No tokens configured\"],\"DdjH42\":[\"顯示設置\"],\"M46ISI\":[\"bars\"],\"Ai6veK\":[\"oval\"],\"8zGXnJ\":[\"dots\"],\"vXIe7J\":[\"語言\"],\"PsXasD\":[\"使用 pseudo 語言\"],\"FEr96N\":[\"Theme\"],\"FpsvqB\":[\"色彩模式\"],\"QFd2P1\":[\"Primary color\"],\"ca2AYV\":[\"高亮顏色\"],\"HmI5oK\":[\"示例\"],\"160vo+\":[\"白色\"],\"u01284\":[\"黑色\"],\"bjp1xg\":[\"邊框半徑\"],\"EBeoY+\":[\"加載器\"],\"yIoFdU\":[\"條\"],\"NAZGMM\":[\"橢圓\"],\"2AXZa8\":[\"點\"],\"cQf1Ay\":[\"Reauthentication\"],\"zga9sT\":[\"OK\"],\"JBPRnC\":[\"Advanced Amininistrative Options for InvenTree\"],\"Q2lUR2\":[\"貨幣\"],\"fqDzSu\":[\"匯率\"],\"aQFOy1\":[\"匯率已更新\"],\"OZSHCs\":[\"匯率更新錯誤\"],\"HQlD/8\":[\"刷新貨幣匯率\"],\"h+ZkcR\":[\"上次獲取時間\"],\"3pmGAW\":[\"基準貨幣\"],\"yDOdwQ\":[\"User Management\"],\"e/zrje\":[\"數據導入\"],\"9PDJnO\":[\"Data Export\"],\"iTylMl\":[\"Templates\"],\"/uOXnx\":[\"掃描條碼\"],\"Lj612C\":[\"後台任務\"],\"xlfzMJ\":[\"錯誤報告\"],\"W9narx\":[\"幣種\"],\"/3MMGZ\":[\"自定狀態\"],\"mSx90B\":[\"Location types\"],\"h0kQrk\":[\"自定義單位\"],\"TxrNvj\":[\"零件參數\"],\"6r/kUX\":[\"類別參數\"],\"d5IWFK\":[\"庫存盤點\"],\"HVuv+Z\":[\"位置類型\"],\"Qf5DYN\":[\"設備\"],\"UDMjsP\":[\"Quick Actions\"],\"zYSRQY\":[\"Add a new user\"],\"NFIOKv\":[\"高級選項\"],\"20FOI0\":[\"Generated Labels\"],\"LuGy8Q\":[\"Machine types\"],\"1ctV9a\":[\"Machine Error Stack\"],\"XyzprV\":[\"Machine Types\"],\"LK9cs2\":[\"There are no machine registry errors.\"],\"Y7d3OC\":[\"Machine Errors\"],\"iXdfqc\":[\"Registry Registry Errors\"],\"2U2qZc\":[\"There are machine registry errors\"],\"32TD49\":[\"Machine Registry Errors\"],\"Jb0bCL\":[\"There are no machine registry errors\"],\"CE+M2e\":[\"信息\"],\"9/VxeC\":[\"Plugin Error Stack\"],\"TQfvsk\":[\"此 InvenTree 未啓用外部插件。\"],\"r6y+jM\":[\"Warning\"],\"LE9XU9\":[\"Changing the settings below require you to immediately restart the server. Do not change this while under active usage.\"],\"VvzkAV\":[\"插件錯誤\"],\"zDhL7c\":[\"頁面尺寸\"],\"XxIeKn\":[\"橫屏模式\"],\"F4rFGE\":[\"附加到模型\"],\"Jo97/n\":[\"Generated Reports\"],\"mKZc+g\":[\"盤點報告\"],\"HkhyUV\":[\"後台任務管理器服務未運行。請聯繫系統管理員。\"],\"tA0cy1\":[\"Background Worker Not Running\"],\"sOEpG4\":[\"待完成任務\"],\"8OiyFS\":[\"計劃任務\"],\"DJ8M4D\":[\"失敗任務\"],\"7aDkDK\":[\"Stock item\"],\"cZ7r5r\":[\"Build line\"],\"t9yxlZ\":[\"Reports\"],\"cShSqt\":[\"Purchase order\"],\"VnNow0\":[\"Sales order\"],\"Ncovhv\":[\"Return order\"],\"9SmsOl\":[\"Tests\"],\"tIExA3\":[\"Stock location\"],\"EbuTi3\":[\"別名\"],\"jPCGbw\":[\"無尺寸\"],\"iJcU0G\":[\"所有單位\"],\"L83fOm\":[\"Select settings relevant for user lifecycle. More available in\"],\"D4SseJ\":[\"System settings\"],\"6RDwJM\":[\"Tokens\"],\"P8fBlG\":[\"Authentication\"],\"HCTGDT\":[\"條碼\"],\"Uox1LM\":[\"此面板是一個佔位符。\"],\"+aCQna\":[\"Physical Units\"],\"aHCEmh\":[\"定價\"],\"kUZvR6\":[\"Exchange Rates\"],\"h8DugX\":[\"標籤\"],\"ApEshE\":[\"報告\"],\"RCVhIP\":[\"生產訂單\"],\"rXda+w\":[\"Switch to User Setting\"],\"AeXO77\":[\"賬户\"],\"a3LDKx\":[\"安全\"],\"+4YDgS\":[\"顯示選項\"],\"4ejweu\":[\"Switch to System Setting\"],\"xyAcm2\":[\"Found an exsisting login - using it to log you in.\"],\"FeQ++0\":[\"Sorry, this page is not known or was moved.\"],\"wmCIch\":[\"Go to the start page\"],\"Zez9Ff\":[\"Delete Notifications\"],\"0caMy7\":[\"歷史記錄\"],\"5GPcf9\":[\"標記為未讀\"],\"j3/C3X\":[\"Delete notifications\"],\"kXDwva\":[\"Build Status\"],\"3wXEsN\":[\"內部零件編碼 IPN\"],\"6LTyxl\":[\"版本\"],\"4DvUAJ\":[\"Custom Status\"],\"N2C89m\":[\"參考\"],\"jqsG41\":[\"上級生產\"],\"Ee+3kG\":[\"生產數量\"],\"Mzv4va\":[\"已出產\"],\"kmUN8p\":[\"發佈人\"],\"VSd7DB\":[\"View part barcode\"],\"XQACoK\":[\"責任人\"],\"ILmSgE\":[\"Link custom barcode to part\"],\"+UKDx2\":[\"Unlink custom barcode from part\"],\"JWtsrK\":[\"Build Order updated\"],\"aZD9Yv\":[\"任意地點\"],\"o35LCI\":[\"目標地點\"],\"imB4Wr\":[\"Edit build order\"],\"BmclYe\":[\"Duplicate build order\"],\"d+F6q9\":[\"已創建\"],\"ltuPrj\":[\"Delete build order\"],\"D3iCkb\":[\"Start Date\"],\"ZmykKo\":[\"預計日期\"],\"qqWcBV\":[\"已完成\"],\"98Q4bz\":[\"生產詳情\"],\"SgduFH\":[\"行項目\"],\"E9en8O\":[\"未出產\"],\"MD2yP5\":[\"已分配的庫存\"],\"US3GCq\":[\"已消耗庫存\"],\"YlY+VD\":[\"Test Statistics\"],\"CVlgqS\":[\"子生產訂單\"],\"isbwWo\":[\"測試結果\"],\"Tyj32s\":[\"Reporting Actions\"],\"V7w5fl\":[\"Print build report\"],\"B7ynKf\":[\"編輯生產訂單\"],\"59jtLx\":[\"添加生產訂單\"],\"MTYJu1\":[\"取消生產訂單\"],\"H5qWhm\":[\"訂單已取消\"],\"MPFqR0\":[\"取消此訂單\"],\"hZIvSn\":[\"掛起生產訂單\"],\"3Wfk51\":[\"將此訂單掛起\"],\"0NH/ob\":[\"掛起訂單\"],\"Z4Rl+B\":[\"發出生產訂單\"],\"lLiNZC\":[\"發出這個訂單\"],\"R/WvFK\":[\"訂單發起\"],\"Q/TP3B\":[\"完成生產訂單\"],\"DYITap\":[\"標記該訂單為已完成\"],\"W7TghJ\":[\"訂單已完成\"],\"WajCDs\":[\"發佈訂單\"],\"NPZqBL\":[\"完成訂單\"],\"tDgG1Y\":[\"生產訂單操作\"],\"mVeaUg\":[\"編輯訂單\"],\"oi/3Pq\":[\"複製訂單\"],\"20mLBC\":[\"掛起訂單\"],\"tVJk4q\":[\"取消訂單\"],\"YxwWvi\":[\"生產訂單\"],\"x1gTgF\":[\"Build order created\"],\"bwuG2V\":[\"New Build Order\"],\"8x9Qq9\":[\"Table View\"],\"nhn/TI\":[\"Calendar View\"],\"On0aF2\":[\"網站\"],\"HF6C2L\":[\"電話號碼\"],\"hzKQCy\":[\"電子郵件地址\"],\"xjO9oI\":[\"默認貨幣單位\"],\"PYTEl0\":[\"供應商\"],\"+m9/3S\":[\"製造商\"],\"876pfE\":[\"客户\"],\"eDkDvt\":[\"Company Details\"],\"EjxtPT\":[\"Edit company\"],\"i4b9ex\":[\"已提供的零件\"],\"glJbgw\":[\"製成零件\"],\"VBpmg6\":[\"Delete company\"],\"TVGEcl\":[\"已分配的庫存\"],\"HoG6cl\":[\"編輯公司\"],\"riHm27\":[\"刪除該公司\"],\"z+ZEYC\":[\"公司操作\"],\"GNd5ad\":[\"內部零件\"],\"ZCCuT2\":[\"製造商零件編號\"],\"0R4wMK\":[\"外部鏈接\"],\"sQRZ1+\":[\"零件詳情\"],\"BCSxrX\":[\"製造商詳情\"],\"uN9giG\":[\"製造商零件詳情\"],\"F18WP3\":[\"參數\"],\"b30yxS\":[\"編輯製造商零件\"],\"uOeMYf\":[\"添加製造商零件\"],\"fMDrRl\":[\"刪除製造商零件\"],\"D/ppgk\":[\"製造商零件操作\"],\"WssheI\":[\"製造商零件\"],\"5ZWiLz\":[\"零件描述\"],\"J9LTXQ\":[\"包裝數量\"],\"0lg3zX\":[\"訂購中\"],\"WrzEdW\":[\"供應商可用性\"],\"Qeo1xd\":[\"可用性已更新\"],\"lXkUEV\":[\"可用性\"],\"F+J5VC\":[\"供應商零件詳情\"],\"b447qM\":[\"接收庫存\"],\"OQkyYP\":[\"供應商價格\"],\"XIY/fv\":[\"供應商零件操作\"],\"qZstuw\":[\"編輯供應商零件\"],\"9Qoago\":[\"刪除供應商零件\"],\"EREF+D\":[\"添加供應商零件\"],\"COcNhC\":[\"無庫存\"],\"u6wzjB\":[\"System Overview\"],\"m6X3ro\":[\"Group Name\"],\"v7zrSW\":[\"Group Details\"],\"anfIXl\":[\"用户詳情\"],\"lej8Sf\":[\"Basic user\"],\"I6gXOa\":[\"路徑\"],\"o8hZ41\":[\"上級類別\"],\"7lonqg\":[\"子類別\"],\"PRKZBP\":[\"結構性\"],\"XLVNTv\":[\"上級默認位置\"],\"QC5Msb\":[\"默認位置\"],\"PFKWrQ\":[\"最高級零件類別\"],\"7fjpj0\":[\"編輯零件類別\"],\"y6iD6w\":[\"Move items to parent category\"],\"lzGbCT\":[\"刪除項\"],\"2tjyh5\":[\"刪除零件類別\"],\"PJYQQn\":[\"零件操作\"],\"ZqK0DP\":[\"對此類別中零件的操作\"],\"QgH9YK\":[\"子類別操作\"],\"ISGGrw\":[\"對此類別中零件的操作\"],\"O/o81A\":[\"類別操作\"],\"wp9B4i\":[\"類別詳情\"],\"KCpl4N\":[\"分配生產訂單\"],\"DaWMWw\":[\"分配銷售訂單\"],\"ji2aTl\":[\"變體於\"],\"eYZfUh\":[\"修訂\"],\"K7tIrx\":[\"類別\"],\"xuaXgj\":[\"默認位置\"],\"6uSImw\":[\"類別默認位置\"],\"QrhaVg\":[\"單位\"],\"/n/HCO\":[\"關鍵詞\"],\"oGd3rK\":[\"可用庫存\"],\"z6SfpV\":[\"變體庫存\"],\"3K8S+7\":[\"最低庫存\"],\"/MB+gl\":[\"訂購中\"],\"xsXvog\":[\"生產訂單所需的\"],\"hHWm3x\":[\"分配生產訂單\"],\"I4qXcg\":[\"分配銷售訂單\"],\"zt/pSE\":[\"Edit part\"],\"S/9nwz\":[\"可以創建\"],\"FFYpjf\":[\"Duplicate part\"],\"BE5Q6v\":[\"生產中\"],\"metDDP\":[\"Delete part\"],\"G2fuEb\":[\"已鎖定\"],\"0ceRuG\":[\"模板零件\"],\"+e3Z9N\":[\"組裝零件\"],\"kux4zT\":[\"組件零件\"],\"I2bj4j\":[\"可測試零件\"],\"SH3bOE\":[\"可追溯零件\"],\"f9RadV\":[\"可購買零件\"],\"HqVuYd\":[\"可銷售零件\"],\"PF44mc\":[\"虛擬零件\"],\"FNcMGM\":[\"創建日期\"],\"egTba/\":[\"創建人\"],\"WpC0X0\":[\"默認供應商\"],\"YA4hwj\":[\"價格範圍\"],\"fL8nU5\":[\"Latest Serial Number\"],\"TF+TDw\":[\"Stocktake By\"],\"SDRhYQ\":[\"變體\"],\"KwhnxF\":[\"分配\"],\"/637F4\":[\"物料清單\"],\"5M5Kdm\":[\"用於\"],\"//6AgL\":[\"零件價格\"],\"DbZMYM\":[\"計劃任務\"],\"eeXE8u\":[\"測試模板\"],\"AAoGm5\":[\"關聯零件\"],\"csDS2L\":[\"可用的\"],\"TMLAx2\":[\"必填\"],\"enG3o5\":[\"編輯零件\"],\"rGfVOS\":[\"添加零件\"],\"KTZNtu\":[\"刪除零件\"],\"DbBU6z\":[\"刪除此零件無法撤銷\"],\"bbA1t1\":[\"庫存操作\"],\"4Qpffa\":[\"清點零件庫存\"],\"tnr8CD\":[\"轉移零件庫存\"],\"UYUgdb\":[\"訂單\"],\"cUzrZK\":[\"訂單庫存\"],\"loB51L\":[\"零件選項\"],\"NYlllY\":[\"選擇零件版本\"],\"NUrY9o\":[\"Categories\"],\"YxrIF+\":[\"未找到此零件的定價數據\"],\"mnyfvF\":[\"定價概覽\"],\"HOEiBc\":[\"採購記錄\"],\"ZAcg+u\":[\"內部價格\"],\"ZHKujT\":[\"物料清單價格\"],\"MIl406\":[\"變體價格\"],\"uZut4M\":[\"銷售價格\"],\"pS6SBr\":[\"銷售記錄\"],\"mOFgdC\":[\"最大值\"],\"4ba0NE\":[\"排定\"],\"CW11B+\":[\"最小值\"],\"Bu20qE\":[\"數量是投機的\"],\"WYBKsz\":[\"沒有提供數量的可用日期\"],\"9AeDTN\":[\"指定日期已過\"],\"igZjpf\":[\"計劃數量\"],\"INI7x0\":[\"No information available\"],\"IBG+Hj\":[\"There is no scheduling information available for the selected part\"],\"6fzEyj\":[\"預期的數量\"],\"4bzVSe\":[\"編輯盤點條目\"],\"SyjNrV\":[\"刪除盤點條目\"],\"A6QWA5\":[\"生成盤點報告\"],\"s3ikt8\":[\"計劃盤點報告\"],\"g9RfVq\":[\"庫存價值\"],\"zPIKqz\":[\"盤點報告\"],\"xAbT4o\":[\"最小值\"],\"0gIKWP\":[\"最大值\"],\"KyZVKD\":[\"總價\"],\"dK3Z9j\":[\"組件\"],\"G+Ulzz\":[\"Minimum Total Price\"],\"QYcUEf\":[\"最低價格\"],\"rW4Gfm\":[\"最高價格\"],\"EbPCPS\":[\"Maximum Total Price\"],\"vWelsN\":[\"單價\"],\"+b7T3G\":[\"已更新\"],\"3ubdv5\":[\"餅狀圖\"],\"LiFJll\":[\"柱狀圖\"],\"SXdWxL\":[\"新增批發價\"],\"l3gpbq\":[\"編輯批發價\"],\"ynVh1t\":[\"刪除批發價\"],\"KOkNlr\":[\"批發價\"],\"a7u1N9\":[\"價格\"],\"aR8akj\":[\"刷新定價數據\"],\"hpQNRe\":[\"更新定價數據\"],\"3bajOU\":[\"更新定價數據失敗\"],\"VEz9J8\":[\"編輯價格\"],\"+iQdL9\":[\"價格類別\"],\"vzRtGZ\":[\"覆蓋價格\"],\"mD5epu\":[\"總價\"],\"KOSX82\":[\"採購價格\"],\"K7P0jz\":[\"最近更新\"],\"5qxm+i\":[\"定價未設置\"],\"xm2zEt\":[\"此部分尚未計算定價數據\"],\"YBZC5h\":[\"定價操作\"],\"lCF0wC\":[\"刷新\"],\"Y8w77c\":[\"刷新定價數據\"],\"A0nfcs\":[\"編輯定價數據\"],\"tMFDem\":[\"無可用數據\"],\"B6C0XJ\":[\"暫無數據\"],\"HzrBHA\":[\"沒有可用的定價數據\"],\"p5/e49\":[\"正在加載定價數據\"],\"zjncvE\":[\"採購價格\"],\"VZWsKS\":[\"Sale Order\"],\"FW5e+C\":[\"銷售價格\"],\"kk1/TT\":[\"供應商價格\"],\"Tootjq\":[\"變體零件\"],\"lAF9Uk\":[\"編輯採購訂單\"],\"XRoR1U\":[\"添加採購訂單\"],\"K7PVg3\":[\"供應商參考\"],\"9j2hXW\":[\"Order Currency,\"],\"qgs95u\":[\"已完成行項目\"],\"Enslfm\":[\"目的地\"],\"0UZTSq\":[\"訂單貨幣\"],\"A6C0pv\":[\"總成本\"],\"x9P/+F\":[\"Created On\"],\"41BQ3k\":[\"Contact Email\"],\"P1x5uo\":[\"Contact Phone\"],\"M1cChr\":[\"Issue Date\"],\"41ha49\":[\"Completion Date\"],\"Tol4BF\":[\"訂單細節\"],\"l11DG/\":[\"額外行項目\"],\"keApR9\":[\"發佈採購訂單\"],\"98xQHK\":[\"取消採購訂單\"],\"vJaCK0\":[\"掛起採購訂單\"],\"CWbcdO\":[\"完成採購訂單\"],\"/IKytX\":[\"訂單操作\"],\"ZVUe1A\":[\"客户參考\"],\"INmUKx\":[\"Order canceled\"],\"RDcVR0\":[\"編輯退貨訂單\"],\"mpNlR/\":[\"添加退貨訂單\"],\"LUGEsQ\":[\"發佈退貨訂單\"],\"qOAlIV\":[\"取消退貨訂單\"],\"Sd+hNf\":[\"掛起退貨訂單\"],\"yDIX54\":[\"完成退貨訂單\"],\"polrQd\":[\"完成配送\"],\"qC/FEC\":[\"Pending Shipments\"],\"nEK4wx\":[\"編輯銷售訂單\"],\"VzdnWM\":[\"添加銷售訂單\"],\"aljM0q\":[\"配送\"],\"Zk75Wf\":[\"發佈銷售訂單\"],\"GYdhXE\":[\"取消銷售訂單\"],\"Pgi6wT\":[\"掛起銷售訂單\"],\"tMUAZW\":[\"Ship Sales Order\"],\"huukBM\":[\"Ship this order?\"],\"NloAZ8\":[\"Order shipped\"],\"O1h5Uc\":[\"完成銷售訂單\"],\"7I7mfp\":[\"裝貨單\"],\"Dwgrby\":[\"配送參考\"],\"sdy17V\":[\"Allocated Items\"],\"DTku8S\":[\"Tracking Number\"],\"MhyecB\":[\"Invoice Number\"],\"MFQxyA\":[\"發貨日期\"],\"ovm9ir\":[\"送達日期\"],\"aaEiwW\":[\"Shipment Details\"],\"9dk0UT\":[\"Assigned Items\"],\"rX/5YH\":[\"編輯配送\"],\"YAsuZ2\":[\"Cancel Shipment\"],\"/IxVda\":[\"完成配送\"],\"UbRKMZ\":[\"待定\"],\"AoOqHM\":[\"已配送\"],\"BTOhSm\":[\"已送達\"],\"1mYYQ6\":[\"Send Shipment\"],\"8ijAtN\":[\"Shipment Actions\"],\"+o9hiJ\":[\"上級地點\"],\"L7/8CO\":[\"次級地點\"],\"bVhrVt\":[\"外部\"],\"4sg5Qp\":[\"位置類型\"],\"js9HzF\":[\"最高級庫存位置\"],\"AC8C/Z\":[\"位置詳細信息\"],\"D19W4x\":[\"默認零件\"],\"Qdjbg8\":[\"編輯庫存地點\"],\"+oqXDN\":[\"Move items to parent location\"],\"lnETLa\":[\"刪除庫存地點\"],\"j3pJx8\":[\"項目操作\"],\"Ml7+Iv\":[\"對此位置中的庫存物品執行的操作\"],\"+DlcAh\":[\"子倉庫操作\"],\"CEDjmR\":[\"對此位置中的子位置執行的操作\"],\"Ego4rz\":[\"位置操作\"],\"mY+KgP\":[\"基礎零件\"],\"JfqbtZ\":[\"Link custom barcode to stock item\"],\"Yo+Era\":[\"Completed Tests\"],\"MrzVmw\":[\"Unlink custom barcode from stock item\"],\"whZ7zT\":[\"最近庫存盤點\"],\"8oSGoC\":[\"分配到訂單\"],\"RF496L\":[\"Edit stock item\"],\"227gwk\":[\"Delete stock item\"],\"QPoAhl\":[\"安裝於\"],\"0o0T0n\":[\"上級項目\"],\"94QKKW\":[\"上級庫存項\"],\"H00rnl\":[\"消耗者\"],\"KD3GYK\":[\"Duplicate stock item\"],\"hBG+yp\":[\"庫存詳情\"],\"IdrYoA\":[\"庫存跟蹤\"],\"dljGeD\":[\"測試數據\"],\"xnskHi\":[\"已安裝的項目\"],\"K4v96J\":[\"子項目\"],\"gQgYNs\":[\"編輯庫存項\"],\"BJoa27\":[\"刪除庫存項\"],\"ETKLHa\":[\"序列化庫存\"],\"Hkw/xj\":[\"庫存項已創建\"],\"FY3xEt\":[\"退貨庫存\"],\"xRHE+Q\":[\"返回此項目到庫存。這將刪除客户作業。\"],\"M6A9fW\":[\"項目已返回庫存\"],\"vq/m8u\":[\"Add stock\"],\"qpe+W0\":[\"Remove stock\"],\"+OxnAC\":[\"Transfer stock\"],\"ClJC3x\":[\"庫存操作\"],\"rb0Klh\":[\"庫存計數\"],\"zPGNJm\":[\"轉移\"],\"Wlr+mY\":[\"序列化\"],\"Vmnyam\":[\"序列化庫存\"],\"vUOn9d\":[\"退貨\"],\"CwkTmH\":[\"從客户退貨\"],\"7J5Eno\":[\"Assign to Customer\"],\"Ch8pZV\":[\"Assign to a customer\"],\"oPF3fX\":[\"庫存項操作\"],\"1ba70W\":[\"Stale\"],\"M1RnFv\":[\"Expired\"],\"jqzUyM\":[\"Unavailable\"],\"Bjsayx\":[\"Error loading icon package from server\"],\"TgUP31\":[\"零件未激活\"],\"Fe2KEj\":[\"Part is locked\"],\"6z/VRr\":[\"零件已鎖定\"],\"uB1bw/\":[\"You are subscribed to notifications for this part\"],\"47h3Cb\":[\"未設置庫存地點\"],\"kCTFU8\":[\"選擇列\"],\"UR8vqQ\":[\"Excel\"],\"6N5Lt+\":[\"CSV\"],\"w+nnwj\":[\"Download selected data\"],\"Keu6yk\":[\"TSV\"],\"Ii6Hnh\":[\"Excel (.xlsx)\"],\"Dz+lnU\":[\"Excel (.xls)\"],\"p63Z1c\":[\"Download Data\"],\"j81Gfd\":[\"Show overdue orders\"],\"iU3XRS\":[\"已分派給我的\"],\"BnF3ID\":[\"顯示分配給我的訂單\"],\"aimnwe\":[\"未完成\"],\"5Dr8AX\":[\"Show outstanding items\"],\"eoAfY+\":[\"Show overdue items\"],\"vhCfRp\":[\"Minimum Date\"],\"g6o1nx\":[\"Show items after this date\"],\"dogwLN\":[\"Maximum Date\"],\"/Is0Q9\":[\"Show items before this date\"],\"XIK9k0\":[\"Created Before\"],\"BVOUXI\":[\"Show items created before this date\"],\"pQfuT0\":[\"Created After\"],\"5D7LoD\":[\"Show items created after this date\"],\"MpyljM\":[\"Start Date Before\"],\"YgY+H6\":[\"Show items with a start date before this date\"],\"8IA8ke\":[\"Start Date After\"],\"5gLRm5\":[\"Show items with a start date after this date\"],\"SsUIID\":[\"Target Date Before\"],\"Ey6gw7\":[\"Show items with a target date before this date\"],\"a8vo2j\":[\"Target Date After\"],\"wvwgPk\":[\"Show items with a target date after this date\"],\"7Ul+eL\":[\"Completed Before\"],\"qR6hn8\":[\"Show items completed before this date\"],\"cFFv89\":[\"Completed After\"],\"liohcD\":[\"Show items completed after this date\"],\"e7gdBS\":[\"有項目編碼\"],\"gW+vYR\":[\"Show orders with an assigned project code\"],\"OIH7WF\":[\"按訂單狀態篩選\"],\"8sHFLc\":[\"按項目編碼篩選\"],\"OVVPn5\":[\"根據負責人進行篩選\"],\"FVjW63\":[\"按用户篩選\"],\"cX/tzW\":[\"Filter by user who created the order\"],\"QFznVK\":[\"Filter by user who issued the order\"],\"/zwgG7\":[\"Filter by part category\"],\"rn2/2V\":[\"移除過濾器\"],\"Fo55lj\":[\"選擇過濾器值\"],\"Q//Mlp\":[\"Enter filter value\"],\"A63fc7\":[\"Select date value\"],\"hpMOSe\":[\"選擇過濾器\"],\"o7J4JM\":[\"過濾器\"],\"l34cnu\":[\"表格篩選\"],\"PzFzS+\":[\"添加過濾條件\"],\"J8ECgX\":[\"清除篩選\"],\"EqGTpW\":[\"沒有找到記錄\"],\"H7mqmH\":[\"Failed to load table options\"],\"3o3AAs\":[\"服務器返回了錯誤的數據類型\"],\"3H+5DU\":[\"Are you sure you want to delete the selected records?\"],\"WH/5rN\":[\"Deleted records\"],\"8rHF9L\":[\"Records were deleted successfully\"],\"QwkhPB\":[\"Failed to delete records\"],\"LYnzbA\":[\"This action cannot be undone!\"],\"inVgrM\":[\"Print actions\"],\"v1qpjB\":[\"Barcode actions\"],\"j2wMlR\":[\"Table filters\"],\"D6FE/v\":[\"Clear custom query filters\"],\"NEGzXb\":[\"刪除所選項目\"],\"3kYcuM\":[\"確定要刪除所選的項目嗎?\"],\"U99rVM\":[\"This action cannot be undone\"],\"B7s1hd\":[\"Items deleted\"],\"NO2Qmx\":[\"Failed to delete items\"],\"VUTcDq\":[\"Custom table filters are active\"],\"QZQ+5V\":[\"刪除選中的記錄\"],\"8RYNR1\":[\"刷新數據\"],\"o3Zq/u\":[\"item-\",[\"idx\"]],\"UzBu4e\":[\"Upload Data\"],\"tCdfmU\":[\"此物料清單項目是為另一個上級定義的\"],\"vVRudK\":[\"零件信息\"],\"e8fwfT\":[\"外部庫存\"],\"XTe+lK\":[\"包括替代庫存\"],\"LdvJ9e\":[\"包括變體庫存\"],\"oZd08v\":[\"正在生產\"],\"odasNw\":[\"庫存信息\"],\"f/GbFw\":[\"可耗物品\"],\"9QNy8U\":[\"無可用庫存\"],\"UWjHm9\":[\"Create BOM Item\"],\"1LYhEA\":[\"Show asssmbled items\"],\"LCdyP7\":[\"顯示可跟蹤項目\"],\"GnQW79\":[\"顯示可跟蹤項目\"],\"yTd5+B\":[\"顯示已裝配的項目\"],\"Dg4tQl\":[\"顯示有可用庫存的項目\"],\"xfq4ym\":[\"按順序顯示項目\"],\"RqNith\":[\"Edit Bom Item\"],\"AT7M/M\":[\"Bom item updated\"],\"GuXjc5\":[\"已驗證\"],\"37tHwV\":[\"顯示已驗證的項目\"],\"0sZpQb\":[\"繼承項\"],\"/8VvXe\":[\"顯示繼承的項目\"],\"dnCTyJ\":[\"允許變體\"],\"IApw+H\":[\"顯示允許變體替換的項目\"],\"1kk0o3\":[\"Delete Bom Item\"],\"ZrT5g0\":[\"Bom item deleted\"],\"LLAa/9\":[\"可選項\"],\"XHqrSv\":[\"顯示可選項目\"],\"+d9ARc\":[\"Are you sure you want to remove this BOM item?\"],\"tlXhbF\":[\"Validate BOM line\"],\"duCsZf\":[\"消耗品\"],\"66RvWY\":[\"顯示可消耗項目\"],\"T43R5B\":[\"是否有價格\"],\"Aszrkt\":[\"顯示帶定價的項目\"],\"RdqEWx\":[\"導入物料清單數據\"],\"vkMikt\":[\"添加物料清單項\"],\"YElEbg\":[\"BOM 項目已創建\"],\"GfL3+x\":[\"編輯物料清單項目\"],\"wykrCX\":[\"物料清單 項目已更新\"],\"XXHHcQ\":[\"刪除物料清單項目\"],\"3o7Mfj\":[\"物料清單項目已刪除\"],\"vIkXF4\":[\"驗證物料清單\"],\"mYOpu8\":[\"您想要驗證此裝配的材料清單嗎?\"],\"RLCXzl\":[\"物料清單確認\"],\"i/1z0K\":[\"物料清單項目已驗證\"],\"TQS5oB\":[\"驗證物料清單項目失敗\"],\"aDkF9z\":[\"查看 物料清單\"],\"rkutMO\":[\"驗證物料清單行\"],\"Omvn40\":[\"編輯替代零件\"],\"QQGDQY\":[\"無法編輯材料清單,因為零件已鎖定\"],\"WL36Yh\":[\"裝配\"],\"v3oiP1\":[\"顯示活動裝配體\"],\"y6MnU0\":[\"可追蹤\"],\"pvl7N9\":[\"顯示可跟蹤裝配體\"],\"ML+087\":[\"分配至輸出\"],\"mVVw+/\":[\"顯示分配給構建輸出的項目\"],\"/g9i/Z\":[\"包含變體\"],\"NkXwQy\":[\"Include orders for part variants\"],\"acIJ41\":[\"訂單狀態\"],\"Tk6w1l\":[\"已分配數量\"],\"I8CEek\":[\"可用數量\"],\"Tqnsor\":[\"Edit Stock Allocation\"],\"yFx3XU\":[\"Edit Build Item\"],\"0tK2en\":[\"Delete Build Item\"],\"nV5okC\":[\"Delete Stock Allocation\"],\"INp5cq\":[\"Show lines with available stock\"],\"f6f1i/\":[\"View Stock Item\"],\"qhfAiQ\":[\"顯示分配的行\"],\"4xoOP+\":[\"顯示可消耗項目\"],\"JZ0XU+\":[\"顯示可選項目\"],\"bJsTOf\":[\"可測試\"],\"EaG6cP\":[\"已跟蹤\"],\"lY29Qz\":[\"顯示已跟蹤項目\"],\"G1xXyB\":[\"生產中\"],\"R7+e2m\":[\"庫存不足\"],\"a5n/wL\":[\"無可用庫存\"],\"UF/nv9\":[\"獲取已繼承的\"],\"O7oMsT\":[\"單位數量\"],\"D91mkk\":[\"Required Quantity\"],\"UcPKar\":[\"創建生產訂單\"],\"xYIlpM\":[\"自動分配進行中\"],\"PjEJ0F\":[\"自動分配庫存量\"],\"E2byp7\":[\"根據選定的選項自動分配庫存到此版本\"],\"ZZL0Jx\":[\"取消庫存分配\"],\"9dNtWo\":[\"為這個構建訂單取消分配所有未跟蹤庫存\"],\"L01aET\":[\"從選中的行項中取消分配庫存\"],\"er7tfw\":[\"庫存已經取消分配\"],\"vgTd7I\":[\"生產庫存\"],\"4BxQBj\":[\"View Part\"],\"c0GCIf\":[\"Cascade\"],\"Q0m6Xv\":[\"Display recursive child orders\"],\"Or8Url\":[\"Show active orders\"],\"bWsuU0\":[\"Show overdue status\"],\"hUps7c\":[\"Show outstanding orders\"],\"IuQlCq\":[\"Filter by whether the purchase order has a project code\"],\"egtJvp\":[\"Has Target Date\"],\"hnmJUh\":[\"Show orders with a target date\"],\"7Cajbj\":[\"Has Start Date\"],\"dklbxT\":[\"Show orders with a start date\"],\"OEh/FL\":[\"Filter by user who issued this order\"],\"VzkBcq\":[\"添加測試結果\"],\"VivtT0\":[\"測試結果已添加\"],\"4bobEy\":[\"無結果\"],\"AO8gAN\":[\"顯示當前生產中的構建輸出\"],\"XqhL5S\":[\"Build Output Stock Allocation\"],\"ACftxI\":[\"Delete build output\"],\"jgrPxc\":[\"添加生成輸出\"],\"KutyZ/\":[\"Edit build output\"],\"yP367G\":[\"編輯生成輸出\"],\"1s7aZ2\":[\"This action will deallocate all stock from the selected build output\"],\"jNuqfk\":[\"完成選定的輸出\"],\"ps+JBt\":[\"報廢選定的輸出\"],\"MXiIO4\":[\"取消選定的輸出\"],\"MeORpZ\":[\"View Build Output\"],\"9X8lAk\":[\"分配\"],\"kHgU4C\":[\"為生產產出分配庫存\"],\"kp5oT9\":[\"取消分配\"],\"NLp8ve\":[\"從生產輸出中取消分配庫存\"],\"BdMeIY\":[\"完成生產輸出\"],\"5mspUE\":[\"報廢件\"],\"oise/z\":[\"報廢生產輸出\"],\"ewDpt2\":[\"取消生產輸出\"],\"/b62hy\":[\"已分配的項目\"],\"E4lFEY\":[\"需要測試\"],\"W0pjLr\":[\"新增地址\"],\"N0ZOat\":[\"地址已創建\"],\"xLQ0lF\":[\"編輯地址\"],\"xiRN5x\":[\"刪除地址\"],\"F1bgq9\":[\"您確定要刪除該地址?\"],\"TsXckK\":[\"New Company\"],\"5blzdE\":[\"添加公司\"],\"KbHNaM\":[\"顯示活躍的公司\"],\"ZFG/Lo\":[\"顯示供應商公司\"],\"G/eOzG\":[\"顯示屬於製造商的公司\"],\"7h6Dth\":[\"顯示客户公司\"],\"mQpWAe\":[\"編輯聯繫人\"],\"M0FgOk\":[\"添加聯繫人\"],\"0oMKRL\":[\"刪除聯繫人\"],\"QsNWTM\":[\"添加聯繫人\"],\"Y4Mpdd\":[\"顯示活躍用户\"],\"wrd7Ba\":[\"顯示工作人員用户\"],\"e1FtjW\":[\"顯示超級用户\"],\"XDpUYO\":[\"Uploading file \",[\"filename\"]],\"FJqE4H\":[\"File uploaded\"],\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"hIFN6r\":[\"Uploading File\"],\"I1EiW4\":[\"File Uploaded\"],\"JuMBMK\":[\"File \",[\"name\"],\" uploaded successfully\"],\"GZnmeE\":[\"文件無法上傳。\"],\"p1w/D6\":[\"上傳附件\"],\"VHmXZm\":[\"Upload attachment\"],\"MVvhJ1\":[\"編輯附件\"],\"hZfPb3\":[\"刪除附件\"],\"3QegpG\":[\"是鏈接\"],\"r1FQZj\":[\"顯示鏈接附件\"],\"JT83gz\":[\"是文件\"],\"5LI39K\":[\"顯示文件附件\"],\"V8euYO\":[\"添加附件\"],\"DpV4ac\":[\"添加外部鏈接\"],\"32o8IC\":[\"找不到附件。\"],\"1cbxaa\":[\"拖拽附件文件到此處上傳\"],\"HX5SVx\":[\"項目\"],\"scu3wk\":[\"型號\"],\"8TMaZI\":[\"時間戳\"],\"Go4fl6\":[\"View Item\"],\"pwb7Yo\":[\"添加行項目\"],\"vgosWS\":[\"編輯行項目\"],\"tpKh8C\":[\"刪除行項目\"],\"xnxWkO\":[\"添加額外行項目\"],\"8hvWaA\":[\"設備已重啓\"],\"RBquff\":[\"編輯設備\"],\"5ihjEH\":[\"刪除設備\"],\"ZbXCol\":[\"設備已成功刪除。\"],\"Y9eJUJ\":[\"你確定要刪除設備 \\\"\",[\"0\"],\"\\\" 嗎?\"],\"HCk1Xx\":[\"Machine\"],\"dKwnjv\":[\"需要重啓\"],\"72f9dQ\":[\"設備操作\"],\"6z9W13\":[\"重新啓動\"],\"Plnldt\":[\"重啓設備\"],\"kbLjlB\":[\"需要手動重啓\"],\"TXZA6i\":[\"Machine information\"],\"gz3Ont\":[\"Machine Information\"],\"pwL+bm\":[\"設備類型\"],\"3ADt1I\":[\"設備驅動程序\"],\"nsu9Un\":[\"已初始化\"],\"hIOaIF\":[\"未報告錯誤\"],\"m57e2B\":[\"設備設置\"],\"fWJCep\":[\"驅動設置\"],\"2Whws6\":[\"Create machine\"],\"V0xlx2\":[\"Add Machine\"],\"kZ/tbb\":[\"添加設備\"],\"dGaozN\":[\"Machine detail\"],\"YDOU4Q\":[\"Machine Detail\"],\"6ccUsd\":[\"驅動\"],\"argeGI\":[\"內置驅動\"],\"pAtylB\":[\"Not Found\"],\"IBrg3Y\":[\"Machine type information\"],\"FW2Ygg\":[\"找不到設備類型。\"],\"RRr8s4\":[\"Machine Type Information\"],\"L85WcV\":[\"別名\"],\"umAemZ\":[\"供應商插件\"],\"jfVQG5\":[\"供應商文件\"],\"7wk8VI\":[\"Available drivers\"],\"qTGFbM\":[\"Available Drivers\"],\"p6inm0\":[\"未找到設備驅動程序。\"],\"Dm7Jy5\":[\"設備驅動信息\"],\"I+nMNp\":[\"設備類型\"],\"9Lc7+e\":[\"Machine type detail\"],\"VDbgpF\":[\"Machine driver detail\"],\"eBtH/D\":[\"內置類型\"],\"qRwuAd\":[\"Machine Type Detail\"],\"RYeia3\":[\"Machine Driver Detail\"],\"RCU5PY\":[\"壽命\"],\"5+87Pq\":[\"通知\"],\"xDAtGP\":[\"信息\"],\"cwMTjO\":[\"點擊以編輯\"],\"T4+0qy\":[\"Edit parameter\"],\"iwRvX8\":[\"添加零件參數\"],\"ZqLOh/\":[\"編輯零件參數\"],\"xqUGVc\":[\"顯示活動零件\"],\"tB/dWJ\":[\"顯示鎖定的零件\"],\"IxF0Eq\":[\"顯示已裝配的零件\"],\"XVdICT\":[\"Required Stock\"],\"bjYQWK\":[\"View Build Order\"],\"mUyvRx\":[\"You are subscribed to notifications for this category\"],\"NgZniC\":[\"包含子類別\"],\"Tt3/Pp\":[\"在結果中包含子類別\"],\"kHkg2b\":[\"顯示結構性類別\"],\"mcDc03\":[\"顯示用户訂閲的類別\"],\"sIMwJx\":[\"新建零件類別\"],\"H52WlQ\":[\"Set Parent Category\"],\"OORNPU\":[\"Set Parent\"],\"rB20aK\":[\"Set parent category for the selected items\"],\"5LuNgu\":[\"增加零件類別\"],\"+BLSbg\":[\"添加類別參數\"],\"kF/O0U\":[\"編輯類別參數\"],\"O5duuA\":[\"刪除類別參數\"],\"+nwoLk\":[\"參數模板\"],\"jzZjwa\":[\"[\",[\"0\"],\"]\"],\"Y0ne3N\":[\"內部單位\"],\"CzIiuH\":[\"新增零件參數\"],\"uuJqm+\":[\"刪除零件參數\"],\"2tuwGz\":[\"添加參數\"],\"w6BdSL\":[\"零件參數無法編輯,因為零件已鎖定\"],\"G1XxbZ\":[\"勾選框\"],\"jaUfxb\":[\"顯示覆選框模板\"],\"dBda4v\":[\"有選項\"],\"f1PxeH\":[\"顯示有選項的模板\"],\"YyRdJQ\":[\"有單位\"],\"jJ6ck0\":[\"顯示有單位的模板\"],\"+ueC+W\":[\"添加參數模板\"],\"TEThbN\":[\"編輯參數模板\"],\"BXI6AQ\":[\"刪除零件參數模板\"],\"leKSr/\":[\"Add parameter template\"],\"GbI1d2\":[\"總數量\"],\"+iVElN\":[\"顯示待定的訂單\"],\"zKLEr5\":[\"顯示已收到的條目\"],\"iV6RGP\":[\"View Sales Order\"],\"Lgnuy/\":[\"最低庫存數\"],\"PHri/6\":[\"按零件活動狀態篩選\"],\"j5DYyt\":[\"按零件鎖定狀態篩選\"],\"oQzKsK\":[\"按裝配屬性篩選\"],\"5JhtGd\":[\"包括子類別中的零件\"],\"oO7QIX\":[\"按組件屬性篩選\"],\"n8MVvQ\":[\"按可跟蹤屬性篩選\"],\"MbixSq\":[\"按可跟蹤屬性篩選\"],\"WyFVby\":[\"按擁有單位的零件篩選\"],\"c9/Fqb\":[\"有內部零件編碼\"],\"jh/Aa+\":[\"按具有內部零件編號的零件篩選\"],\"JqmfuT\":[\"有庫存\"],\"6Kd+HK\":[\"按有庫存的零件篩選\"],\"GDYPCw\":[\"按庫存少的零件篩選\"],\"TW9g28\":[\"可購買\"],\"KMdl2R\":[\"按可購買的零件篩選\"],\"/3xNJ4\":[\"可銷售\"],\"V5i7hf\":[\"按可出售的零件篩選\"],\"ksX7Wx\":[\"虛擬\"],\"QDTpY6\":[\"按虛擬零件篩選\"],\"+SkaI8\":[\"非虛擬的\"],\"62zyX+\":[\"是模板\"],\"utmCBg\":[\"按模板部分篩選零件\"],\"t/zat7\":[\"Is Variant\"],\"7xsBld\":[\"Filter by parts which are variants\"],\"wV5kLq\":[\"是否修訂\"],\"bvyXYp\":[\"按修訂零件篩選\"],\"uN6v7B\":[\"有修訂\"],\"mWe3zs\":[\"按有修訂的零件篩選\"],\"/t4j0O\":[\"按有定價信息的零件篩選\"],\"NINff3\":[\"按有可用庫存的零件篩選\"],\"PNFIYy\":[\"按用户訂閲的零件篩選\"],\"gzYEcU\":[\"有盤點\"],\"u1pAkC\":[\"按有盤點信息的零件篩選\"],\"JSqPHE\":[\"Set Category\"],\"AVPs2p\":[\"Set category for selected parts\"],\"RBzQBd\":[\"Order selected parts\"],\"z/2etd\":[\"測試被定義為父模板部分\"],\"E9RwYl\":[\"模版詳情\"],\"kx0s+n\":[\"結果\"],\"pgdOa+\":[\"顯示必選測試\"],\"E4Q3+2\":[\"顯示啓用測試\"],\"ngtadB\":[\"需要值\"],\"loHk6k\":[\"顯示需要值的測試\"],\"Mw88Xv\":[\"需要附件\"],\"ufV8ON\":[\"顯示需要附件的測試\"],\"R9N/8P\":[\"包含繼承的\"],\"e6bd4c\":[\"顯示繼承模板的測試\"],\"6pnRgI\":[\"有結果\"],\"+ZdPFq\":[\"顯示已記錄結果的測試\"],\"c+EQoO\":[\"添加測試模板\"],\"2aEufW\":[\"編輯測試模板\"],\"ol4QKg\":[\"刪除測試模板\"],\"jIZttH\":[\"此操作無法撤銷。\"],\"E87VhQ\":[\"任何與此模板相關的測試結果將被刪除\"],\"vAhLlw\":[\"查看父部分\"],\"B7Vy/0\":[\"模板參數無法編輯,因為組件已鎖定\"],\"rG3WVm\":[\"選擇\"],\"rvLCOc\":[\"顯示激活的變體\"],\"/K2CvV\":[\"模板\"],\"GdgCV2\":[\"顯示模板變體\"],\"83ib20\":[\"顯示虛擬變體\"],\"7VJ4Si\":[\"顯示可跟蹤變體\"],\"K0+pq1\":[\"添加關聯零件\"],\"xG+5dj\":[\"Add related part\"],\"/kFxhJ\":[\"刪除關聯零件\"],\"EI0Ac7\":[\"Edit Related Part\"],\"HCpwcG\":[\"Add Selection List\"],\"n7tNkj\":[\"Edit Selection List\"],\"fo+0WX\":[\"Delete Selection List\"],\"3PRxO3\":[\"階段\"],\"QqLLp2\":[\"此插件已激活\"],\"s99Mc1\":[\"插件未激活\"],\"LtEW/l\":[\"插件未安裝\"],\"fOuPPd\":[\"插件\"],\"j7QLNC\":[\"Plugin with key \",[\"pluginKey\"],\" not found\"],\"1eDLl4\":[\"An error occurred while fetching plugin details\"],\"gFFgtV\":[\"Mandatory\"],\"OC2EKF\":[\"Plugin with id \",[\"id\"],\" not found\"],\"9YdyZU\":[\"描述不可用.\"],\"t4Dg7a\":[\"Plugin information\"],\"etUvlY\":[\"Plugin Actions\"],\"CL5Gfb\":[\"Edit plugin\"],\"fLe7w+\":[\"確認插件激活\"],\"HpK/8d\":[\"Reload\"],\"oBCe/M\":[\"確認插件停用\"],\"th4roR\":[\"所選插件將被激活\"],\"WPCUXx\":[\"所選插件將被停用\"],\"sxxj4o\":[\"Package information\"],\"5y3O+A\":[\"停用\"],\"FQBaXG\":[\"激活\"],\"RqdYGI\":[\"激活所選插件\"],\"xWsR91\":[\"Plugin settings\"],\"R7mVjI\":[\"更新所選插件\"],\"fo0VXg\":[\"卸載\"],\"ll8AEP\":[\"卸載所選插件\"],\"yX/BXa\":[\"刪除選中的插件配置\"],\"2RHgaV\":[\"激活插件\"],\"VAuM5b\":[\"The plugin was activated\"],\"ysKQPq\":[\"The plugin was deactivated\"],\"R7k68Z\":[\"安裝插件\"],\"TKQ7K+\":[\"安裝\"],\"MiYlP5\":[\"插件安裝成功\"],\"mXzRzO\":[\"卸載插件\"],\"2xOCJW\":[\"This action cannot be undone.\"],\"6onEou\":[\"確認插件卸載\"],\"nh4MTY\":[\"所選插件將被卸載。\"],\"MAZU/W\":[\"插件卸載成功\"],\"nud26y\":[\"刪除插件\"],\"vb5uIh\":[\"刪除此插件配置將刪除所有相關的設置和數據。您確定要刪除此插件嗎?\"],\"KyWCx1\":[\"Deactivate Plugin\"],\"Bs76+T\":[\"插件已重載\"],\"js1VzJ\":[\"插件重載成功\"],\"LZ82cI\":[\"The following plugin will be activated\"],\"DSZP3u\":[\"The following plugin will be deactivated\"],\"2VWTDu\":[\"重載插件\"],\"0O/OZv\":[\"安裝插件\"],\"zKwhqX\":[\"Activating plugin\"],\"31OZWt\":[\"Deactivating plugin\"],\"NCjc4L\":[\"插件詳情\"],\"lOONZM\":[\"Plugin updated\"],\"ycupYY\":[\"Error updating plugin\"],\"LcJmOR\":[\"樣本\"],\"eQkgKV\":[\"已安裝\"],\"jgl9ip\":[\"Plugin detail\"],\"WrK5aa\":[\"添加參數\"],\"SaV/l6\":[\"Parameter updated\"],\"FDjidN\":[\"編輯參數\"],\"YAbfek\":[\"Parameter deleted\"],\"0Agsuf\":[\"Are you sure you want to delete this parameter?\"],\"qSo+g1\":[\"刪除參數\"],\"DTNpCW\":[\"Create Manufacturer Part\"],\"zVjqeS\":[\"Manufacturer part updated\"],\"E1B18F\":[\"Manufacturer part deleted\"],\"Gk8NFj\":[\"Are you sure you want to remove this manufacturer part?\"],\"yWWRAr\":[\"導入行項目\"],\"PeuqsI\":[\"供應商代碼\"],\"h3/Rpt\":[\"供應商鏈接\"],\"u7qly3\":[\"製造商編號\"],\"8Dmqxr\":[\"Show line items which have been received\"],\"ul9IpB\":[\"接收這行項目\"],\"2vqtLo\":[\"Add line item\"],\"gyK1dv\":[\"收到項目\"],\"TOxiOu\":[\"製造商零件編號 (MPN)\"],\"v9F5VO\":[\"基礎單位\"],\"PsAftp\":[\"添加供應商零件\"],\"mwOWRa\":[\"Supplier part updated\"],\"fPFpxB\":[\"顯示活動供應商零件\"],\"9RQlSP\":[\"激活的零件\"],\"AS2E8V\":[\"顯示活動內部零件\"],\"2OQxz2\":[\"活躍的供應商\"],\"T+mlMU\":[\"顯示活躍供應商\"],\"3GcBv9\":[\"Supplier part deleted\"],\"YGIkv1\":[\"Are you sure you want to remove this supplier part?\"],\"u22Ntx\":[\"Show supplier parts with stock\"],\"J18WDZ\":[\"接收日期\"],\"qVsPia\":[\"顯示已收到的項目\"],\"vQY+8t\":[\"按行項目狀態篩選\"],\"ORa4sV\":[\"接收選中項目\"],\"7cTlo3\":[\"接收物品\"],\"ILsgZ4\":[\"Show outstanding allocations\"],\"uvBviC\":[\"Assigned to Shipment\"],\"U6KGSj\":[\"Show allocations assigned to a shipment\"],\"Xmnh8X\":[\"No shipment\"],\"BVdqnq\":[\"Not shipped\"],\"+2kti8\":[\"Edit Allocation\"],\"m9p8qY\":[\"Delete Allocation\"],\"jLpOuT\":[\"Assign to Shipment\"],\"7m2EYK\":[\"Assign to shipment\"],\"AZE5KS\":[\"分配序列號\"],\"/x4Ue4\":[\"Allocate stock\"],\"xIkS3e\":[\"Allocate Serials\"],\"Rk+ZGQ\":[\"Show lines which are fully allocated\"],\"x7Nm8D\":[\"Show lines which are completed\"],\"EIkxpC\":[\"Allocate serials\"],\"NH34YB\":[\"生產庫存\"],\"G4SnGh\":[\"訂單庫存\"],\"GicrKZ\":[\"Delete Shipment\"],\"qU3Y7+\":[\"創建配送\"],\"BzfzPK\":[\"項目\"],\"GtJdx7\":[\"View Shipment\"],\"MPjEsC\":[\"Edit shipment\"],\"whI1i/\":[\"Cancel shipment\"],\"77d67d\":[\"添加配送\"],\"zxYkrg\":[\"顯示已發貨的貨物\"],\"DOexmc\":[\"顯示已送達的貨物\"],\"PxJ9W6\":[\"Generate Token\"],\"jUAqIc\":[\"Token generated\"],\"xGiT1z\":[\"Revoked\"],\"TP9/K5\":[\"Token\"],\"OxPEUg\":[\"In Use\"],\"bLZksC\":[\"Last Seen\"],\"agO/T/\":[\"Expiry\"],\"iFQOwR\":[\"Show revoked tokens\"],\"GXsAby\":[\"撤銷\"],\"LQLPLZ\":[\"Error revoking token\"],\"VWjAuB\":[\"Tokens are only shown once - make sure to note it down.\"],\"HsJeTk\":[\"條碼信息\"],\"FCKppt\":[\"端點\"],\"RD6AE9\":[\"結果\"],\"M73whl\":[\"內容\"],\"ZlCDf+\":[\"響應\"],\"+Bt9q7\":[\"按結果過濾\"],\"XBxqOY\":[\"刪除條碼掃描記錄\"],\"y1GSyz\":[\"條碼掃描詳情\"],\"d20v+o\":[\"日誌已禁用\"],\"y6SrPr\":[\"條碼日誌未啓用\"],\"TGcVE+\":[\"Status Group\"],\"Iz1I4v\":[\"Logical State\"],\"sJGljQ\":[\"Identifier\"],\"9lGJPt\":[\"Add state\"],\"vTGxVN\":[\"添加狀態\"],\"/viGTM\":[\"編輯狀態\"],\"Yrs5A6\":[\"刪除狀態\"],\"W3xtIU\":[\"添加自定義單位\"],\"MiLRVK\":[\"編輯自定義單位\"],\"UbQkdF\":[\"刪除自定義單位\"],\"VzcXtA\":[\"添加自定義單位\"],\"Y9iMNt\":[\"Delete error report\"],\"g3fe3D\":[\"Traceback\"],\"1ZF9KQ\":[\"當\"],\"pao9M8\":[\"錯誤信息\"],\"LKUVto\":[\"刪除錯誤日誌\"],\"crTsip\":[\"確定要刪除這錯誤告嗎?\"],\"lYkkju\":[\"錯誤報告已刪除\"],\"7Jw/XW\":[\"錯誤詳情\"],\"Pfebun\":[\"Output Type\"],\"oJd0vd\":[\"Exported On\"],\"Q3P/4s\":[\"任務\"],\"YgxM31\":[\"任務ID\"],\"JEGlfK\":[\"已開始\"],\"BCmibk\":[\"嘗試次數\"],\"6RoHXm\":[\"No Information\"],\"OFdRJT\":[\"No error details are available for this task\"],\"yO7e9w\":[\"未找到 ID 為 \",[\"id\"],\" 的羣組\"],\"rubZxD\":[\"獲取羣組詳細信息時出錯\"],\"B7dQAo\":[\"權限設置\"],\"k/RLDM\":[\"刪除羣組\"],\"qYB1E/\":[\"羣組已刪除\"],\"X8Qpil\":[\"確定要刪除這個羣組嗎?\"],\"bm8pgG\":[\"添加羣組\"],\"46SUtl\":[\"編輯羣組\"],\"HkPAKw\":[\"刪除導入的會話\"],\"PlWSqy\":[\"創建導入會話\"],\"3wG7HI\":[\"已上傳\"],\"pLosEx\":[\"型號類型\"],\"qrooIv\":[\"按目標型號篩選\"],\"iv0viw\":[\"按導入會話狀態篩選\"],\"OgB1k4\":[\"參數\"],\"FhC+KB\":[\"添加項目編碼\"],\"9+Sxmn\":[\"編輯項目編碼\"],\"tGsebi\":[\"刪除項目編碼\"],\"6K55qI\":[\"編輯項目編碼\"],\"QnJn75\":[\"上一次運行\"],\"1C5cFl\":[\"下一次運行\"],\"gjpdaf\":[\"報告\"],\"aCQiIS\":[\"零件計數\"],\"MlrelG\":[\"刪除報告\"],\"E98eQs\":[[\"templateTypeTranslation\"],\" with id \",[\"id\"],\" not found\"],\"Aj01Iz\":[\"An error occurred while fetching \",[\"templateTypeTranslation\"],\" details\"],\"xsi6kC\":[\"actions\"],\"p2sbyZ\":[\"找不到模板\"],\"Wt1PP8\":[\"獲取插件詳細信息時出錯\"],\"Hkobke\":[\"Add new\"],\"BOqY23\":[\"Create new\"],\"J1B1dP\":[\"修改\"],\"aZ7tE3\":[\"報告模板文件\"],\"FkQvI0\":[\"編輯模板\"],\"DFjdv0\":[\"刪除模板\"],\"uQlQah\":[\"添加模板\"],\"LbIbgd\":[\"添加模板\"],\"ZSdpBm\":[\"按啓用狀態篩選\"],\"M7/mjk\":[\"Report Output\"],\"z0pfhl\":[\"未找到 ID 為 \",[\"id\"],\" 的用户\"],\"h/t9U9\":[\"獲取用户詳細信息時出錯\"],\"bhnh17\":[\"激活\"],\"xYgjoW\":[\"指定是否將此用户視為激活用户。取消選擇此選項將不會刪除賬户。\"],\"F5kfLm\":[\"員工\"],\"paSmTV\":[\"指定用户是否可以登錄 django 管理頁面。\"],\"tIIrDc\":[\"超級用户\"],\"dNitd2\":[\"指定該用户擁有所有權限,而無需明確分配。\"],\"bDFcjC\":[\"您不能編輯當前登錄用户的權限。\"],\"n7RDzR\":[\"沒有羣組\"],\"E33LRn\":[\"刪除用户\"],\"Z1AUmg\":[\"用户已刪除\"],\"af4xhp\":[\"您確定要刪除該用户嗎?\"],\"Ls08BH\":[\"Add User\"],\"e7XEqK\":[\"已添加用户\"],\"UbwSmF\":[\"添加用户\"],\"poTr35\":[\"編輯用户\"],\"erPDED\":[\"安裝項目\"],\"g+zcGQ\":[\"已安裝項目\"],\"q2BZiX\":[\"卸載項目\"],\"ibtYlF\":[\"已卸載項目\"],\"mGSvSz\":[\"卸載庫存項目\"],\"4C+o/K\":[\"添加位置類型\"],\"BN23Uj\":[\"編輯位置類型\"],\"G9WAYq\":[\"刪除位置類型\"],\"wwu18a\":[\"圖標\"],\"fh2Vf5\":[\"該庫存項正在生產\"],\"X1BIR/\":[\"庫存項已分配到銷售訂單\"],\"fHlvYo\":[\"庫存項已分配給客户\"],\"bGwMIh\":[\"此庫存項已安裝在另一個庫存項中\"],\"Xig/cj\":[\"此庫存項已被生產訂單消耗\"],\"szsXHP\":[\"This stock item is unavailable\"],\"x/QIhZ\":[\"此庫存項已過期\"],\"UtuqjX\":[\"此庫存項是過期項\"],\"L1D5PL\":[\"此庫存項已完全分配\"],\"PjVOCj\":[\"此庫存項已被部分分配\"],\"ddPzUj\":[\"庫存項已耗盡\"],\"6OScNP\":[\"盤點日期\"],\"iG2HTd\":[\"Show stock for assmebled parts\"],\"UjHL/d\":[\"顯示激活零件的庫存\"],\"+Jr1e4\":[\"按庫存狀態篩選\"],\"3Ah+L7\":[\"顯示組裝配件的庫存\"],\"pxiNcZ\":[\"顯示已分配的項目\"],\"kbUAFH\":[\"顯示可用的項目\"],\"VY386J\":[\"包括子地點\"],\"fMbOmV\":[\"包括子地點的庫存\"],\"9/P0N3\":[\"耗盡\"],\"0n9TfP\":[\"顯示耗盡的庫存項\"],\"oXdFGe\":[\"顯示庫存中的項目\"],\"c64azd\":[\"顯示正在生產的項目\"],\"n9gDGi\":[\"包括變體零件的庫存項\"],\"XNITBt\":[\"Consumed\"],\"1yWWZV\":[\"Show items which have been consumed by a build order\"],\"GQ73kf\":[\"顯示安裝在其他項目中的庫存項\"],\"XwjZor\":[\"發送給客户\"],\"LPuYfz\":[\"顯示已發送給客户的項目\"],\"SkCY/+\":[\"已序列化\"],\"S5yS1f\":[\"顯示帶有序列號的項目\"],\"Y/SfF6\":[\"Filter items by batch code\"],\"hFRTeN\":[\"Filter items by serial number\"],\"HnbC6h\":[\"Serial Number LTE\"],\"yLzTzA\":[\"Show items with serial numbers less than or equal to a given value\"],\"CSpSNh\":[\"Serial Number GTE\"],\"Gnj5CL\":[\"Show items with serial numbers greater than or equal to a given value\"],\"qPCbMt\":[\"有批號\"],\"rc/Y1E\":[\"顯示有批號的項目\"],\"TRFyJq\":[\"顯示已跟蹤項目\"],\"+MprDT\":[\"有采購價格\"],\"tAFrkr\":[\"顯示有購買價格的項目\"],\"JiHUig\":[\"Show items which have expired\"],\"SQjqoc\":[\"Show items which are stale\"],\"mHDi5V\":[\"Expired Before\"],\"j2+SIa\":[\"Show items which expired before this date\"],\"snknx0\":[\"Expired After\"],\"UyBcoZ\":[\"Show items which expired after this date\"],\"h8xl5M\":[\"Updated Before\"],\"5zwJta\":[\"Show items updated before this date\"],\"nl9mSR\":[\"Updated After\"],\"P5Y0sz\":[\"Show items updated after this date\"],\"Hj/Grl\":[\"Stocktake Before\"],\"iTehcJ\":[\"Show items counted before this date\"],\"+GUu77\":[\"Stocktake After\"],\"w30K80\":[\"Show items counted after this date\"],\"k7rbV9\":[\"外部地點\"],\"ETtRZU\":[\"顯示外部庫存地點的項目\"],\"y5SdJc\":[\"Delete stock items\"],\"wiTIgC\":[\"添加一個新的庫存項\"],\"vP4ilC\":[\"從庫存項中刪除一些數量\"],\"lgwXs+\":[\"將庫存項目移動到新位置\"],\"E6cz5z\":[\"更改庫存狀態\"],\"/gndGd\":[\"更改庫存項的狀態\"],\"3iu3Xl\":[\"合併庫存\"],\"V22osk\":[\"合併庫存項\"],\"iihIqf\":[\"訂單新庫存\"],\"chR2IB\":[\"分配給客户\"],\"jETzQV\":[\"Assign items to a customer\"],\"6vqSiF\":[\"刪除庫存\"],\"NnH3pK\":[\"測試\"],\"yd1WJ/\":[\"已安裝庫存項目的測試結果\"],\"UY1vmE\":[\"附件\"],\"18Lf3c\":[\"測試站\"],\"4dQFvz\":[\"已完成\"],\"1HKt5e\":[\"編輯測試結果\"],\"G0v/SO\":[\"測試結果已更新\"],\"381PhV\":[\"刪除測試結果\"],\"xbuMqN\":[\"測試結果已刪除\"],\"uUlW4e\":[\"測試通過\"],\"uiR3yF\":[\"測試結果已被記錄\"],\"VjER3N\":[\"記錄測試結果失敗\"],\"up/ozE\":[\"通過測試\"],\"sKK8za\":[\"顯示需要測試的結果\"],\"TD72EF\":[\"包含已安裝的\"],\"BYeSw1\":[\"顯示已安裝庫存項目的結果\"],\"nqMwPi\":[\"通過\"],\"bcwRe2\":[\"只顯示通過的測試\"],\"+kMQXd\":[\"Show results for enabled tests\"],\"evmuf/\":[\"structural\"],\"Ue7Vtx\":[\"在結果中包含子地點\"],\"FCS8de\":[\"external\"],\"zW8WBT\":[\"顯示結構性地點\"],\"ckSQBM\":[\"顯示外部地點\"],\"Sgyhpp\":[\"有位置類型\"],\"buIdz6\":[\"按位置類型篩選\"],\"sklcDg\":[\"添加庫存地點\"],\"vqGtWs\":[\"Set Parent Location\"],\"dIzYVe\":[\"Set parent location for the selected items\"],\"hp8OtS\":[\"已添加\"],\"eps54V\":[\"已刪除\"],\"URmyfc\":[\"詳情\"],\"L5d7xh\":[\"沒有用户信息\"],\"72c5Qo\":[\"Total\"],\"7Bj3x9\":[\"Failed\"],\"OWg6Ht\":[\"檢測到手機視圖\"],\"1owcfN\":[\"InvenTree UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\"],\"j1oKmM\":[\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\"],\"NtcqDr\":[\"閲讀文檔\"],\"DGeA2E\":[\"忽略並繼續到桌面視圖\"]}")as Messages;
|
package/src/main.css.ts
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import { rem } from '@mantine/core';
|
|
2
|
+
import { style } from '@vanilla-extract/css';
|
|
3
|
+
|
|
4
|
+
import { vars } from './theme';
|
|
5
|
+
|
|
6
|
+
export const layoutHeader = style({
|
|
7
|
+
paddingTop: vars.spacing.sm,
|
|
8
|
+
marginBottom: 10,
|
|
9
|
+
|
|
10
|
+
[vars.lightSelector]: {
|
|
11
|
+
backgroundColor: vars.colors.gray[0],
|
|
12
|
+
borderBottom: `${rem(1)} solid ${vars.colors.gray[2]}`
|
|
13
|
+
},
|
|
14
|
+
[vars.darkSelector]: {
|
|
15
|
+
backgroundColor: vars.colors.dark[6],
|
|
16
|
+
borderBottom: `${rem(1)} solid transparent`
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
export const layoutFooter = style({
|
|
21
|
+
marginTop: 10,
|
|
22
|
+
[vars.lightSelector]: { borderTop: `1px solid ${vars.colors.gray[2]}` },
|
|
23
|
+
[vars.darkSelector]: { borderTop: `1px solid ${vars.colors.dark[5]}` }
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
export const layoutHeaderSection = style({
|
|
27
|
+
paddingBottom: vars.spacing.sm
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
export const layoutHeaderUser = style({
|
|
31
|
+
padding: `${vars.spacing.xs}px ${vars.spacing.sm}px`,
|
|
32
|
+
borderRadius: vars.radiusDefault,
|
|
33
|
+
transition: 'background-color 100ms ease',
|
|
34
|
+
|
|
35
|
+
[vars.lightSelector]: { color: vars.colors.black },
|
|
36
|
+
[vars.darkSelector]: { color: vars.colors.dark[0] },
|
|
37
|
+
|
|
38
|
+
[vars.smallerThan('xs')]: {
|
|
39
|
+
display: 'none'
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
export const headerDropdownFooter = style({
|
|
44
|
+
margin: `calc(${vars.spacing.md} * -1)`,
|
|
45
|
+
marginTop: vars.spacing.sm,
|
|
46
|
+
padding: `${vars.spacing.md} calc(${vars.spacing.md} * 2)`,
|
|
47
|
+
paddingBottom: vars.spacing.xl,
|
|
48
|
+
|
|
49
|
+
[vars.lightSelector]: {
|
|
50
|
+
backgroundColor: vars.colors.gray[0],
|
|
51
|
+
borderTop: `${rem(1)} solid ${vars.colors.gray[1]}`
|
|
52
|
+
},
|
|
53
|
+
[vars.darkSelector]: {
|
|
54
|
+
backgroundColor: vars.colors.dark[7],
|
|
55
|
+
borderTop: `${rem(1)} solid ${vars.colors.dark[5]}`
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
export const link = style({
|
|
60
|
+
display: 'flex',
|
|
61
|
+
alignItems: 'center',
|
|
62
|
+
height: '100%',
|
|
63
|
+
paddingLeft: vars.spacing.md,
|
|
64
|
+
paddingRight: vars.spacing.md,
|
|
65
|
+
textDecoration: 'none',
|
|
66
|
+
fontWeight: 500,
|
|
67
|
+
fontSize: vars.fontSizes.sm,
|
|
68
|
+
|
|
69
|
+
[vars.lightSelector]: { color: vars.colors.black },
|
|
70
|
+
[vars.darkSelector]: { color: vars.colors.white },
|
|
71
|
+
|
|
72
|
+
[vars.smallerThan('sm')]: {
|
|
73
|
+
height: rem(42),
|
|
74
|
+
display: 'flex',
|
|
75
|
+
alignItems: 'center',
|
|
76
|
+
width: '100%'
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
':hover': {
|
|
80
|
+
[vars.lightSelector]: { backgroundColor: vars.colors.gray[0] },
|
|
81
|
+
[vars.darkSelector]: { backgroundColor: vars.colors.dark[6] }
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
export const docHover = style({
|
|
86
|
+
border: '1px dashed '
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
export const layoutContent = style({
|
|
90
|
+
flex: 1,
|
|
91
|
+
width: '100%'
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
export const tabs = style({
|
|
95
|
+
[vars.smallerThan('sm')]: {
|
|
96
|
+
display: 'none'
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
|
|
100
|
+
export const tabsList = style({
|
|
101
|
+
borderBottom: '0 !important'
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
export const tab = style({
|
|
105
|
+
fontWeight: 500,
|
|
106
|
+
height: 38,
|
|
107
|
+
backgroundColor: 'transparent',
|
|
108
|
+
|
|
109
|
+
':hover': {
|
|
110
|
+
[vars.lightSelector]: { backgroundColor: vars.colors.gray[1] },
|
|
111
|
+
[vars.darkSelector]: { backgroundColor: vars.colors.dark[5] }
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
selectors: {
|
|
115
|
+
'&[data-active]': {
|
|
116
|
+
backgroundColor: vars.colors.primaryColors.light
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
|
|
121
|
+
export const error = style({
|
|
122
|
+
backgroundColor: vars.colors.gray[0],
|
|
123
|
+
color: vars.colors.red[6]
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
export const dashboardItemValue = style({
|
|
127
|
+
fontSize: 24,
|
|
128
|
+
fontWeight: 700,
|
|
129
|
+
lineHeight: 1
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
export const dashboardItemTitle = style({
|
|
133
|
+
fontWeight: 700
|
|
134
|
+
});
|
|
135
|
+
|
|
136
|
+
export const card = style({
|
|
137
|
+
[vars.lightSelector]: { backgroundColor: vars.colors.white },
|
|
138
|
+
[vars.darkSelector]: { backgroundColor: vars.colors.dark[7] }
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
export const itemTopBorder = style({
|
|
142
|
+
[vars.lightSelector]: { borderTop: `1px solid ${vars.colors.gray[2]}` },
|
|
143
|
+
[vars.darkSelector]: { borderTop: `1px solid ${vars.colors.dark[4]}` }
|
|
144
|
+
});
|
|
145
|
+
|
|
146
|
+
export const navigationDrawer = style({
|
|
147
|
+
padding: 0
|
|
148
|
+
});
|
package/src/main.tsx
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import '@mantine/carousel/styles.css';
|
|
2
|
+
import '@mantine/charts/styles.css';
|
|
3
|
+
import '@mantine/core/styles.css';
|
|
4
|
+
import '@mantine/dates/styles.css';
|
|
5
|
+
import '@mantine/notifications/styles.css';
|
|
6
|
+
import '@mantine/spotlight/styles.css';
|
|
7
|
+
import * as Sentry from '@sentry/react';
|
|
8
|
+
import 'mantine-contextmenu/styles.css';
|
|
9
|
+
import 'mantine-datatable/styles.css';
|
|
10
|
+
import 'react-grid-layout/css/styles.css';
|
|
11
|
+
import 'react-resizable/css/styles.css';
|
|
12
|
+
import * as MantineCore from '@mantine/core';
|
|
13
|
+
import * as MantineNotifications from '@mantine/notifications';
|
|
14
|
+
import * as React from 'react';
|
|
15
|
+
import * as ReactDOM from 'react-dom';
|
|
16
|
+
import * as ReactDOMClient from 'react-dom/client';
|
|
17
|
+
|
|
18
|
+
import type { HostList } from '@lib/types/Server';
|
|
19
|
+
import MainView from './views/MainView';
|
|
20
|
+
|
|
21
|
+
// define settings
|
|
22
|
+
declare global {
|
|
23
|
+
interface Window {
|
|
24
|
+
INVENTREE_SETTINGS: {
|
|
25
|
+
server_list: HostList;
|
|
26
|
+
default_server: string;
|
|
27
|
+
show_server_selector: boolean;
|
|
28
|
+
base_url?: string;
|
|
29
|
+
api_host?: string;
|
|
30
|
+
sentry_dsn?: string;
|
|
31
|
+
environment?: string;
|
|
32
|
+
};
|
|
33
|
+
react: typeof React;
|
|
34
|
+
React: typeof React;
|
|
35
|
+
ReactDOM: typeof ReactDOM;
|
|
36
|
+
ReactDOMClient: typeof ReactDOMClient;
|
|
37
|
+
MantineCore: typeof MantineCore;
|
|
38
|
+
MantineNotifications: typeof MantineNotifications;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Running in dev mode (i.e. vite)
|
|
43
|
+
export const IS_DEV = import.meta.env.DEV;
|
|
44
|
+
export const IS_DEMO = import.meta.env.VITE_DEMO === 'true';
|
|
45
|
+
export const IS_DEV_OR_DEMO = IS_DEV || IS_DEMO;
|
|
46
|
+
|
|
47
|
+
// Filter out any settings that are not defined
|
|
48
|
+
const loaded_vals = (window.INVENTREE_SETTINGS || {}) as any;
|
|
49
|
+
|
|
50
|
+
Object.keys(loaded_vals).forEach((key) => {
|
|
51
|
+
if (loaded_vals[key] === undefined) {
|
|
52
|
+
delete loaded_vals[key];
|
|
53
|
+
|
|
54
|
+
// check for empty server list
|
|
55
|
+
} else if (key === 'server_list' && loaded_vals[key].length === 0) {
|
|
56
|
+
delete loaded_vals[key];
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
window.INVENTREE_SETTINGS = {
|
|
61
|
+
server_list: {
|
|
62
|
+
...(IS_DEV
|
|
63
|
+
? {
|
|
64
|
+
'server-localhost': {
|
|
65
|
+
host: 'http://localhost:8000',
|
|
66
|
+
name: 'Localhost'
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
: {}),
|
|
70
|
+
...(IS_DEV_OR_DEMO
|
|
71
|
+
? {
|
|
72
|
+
'server-demo': {
|
|
73
|
+
host: 'https://demo.inventree.org/',
|
|
74
|
+
name: 'InvenTree Demo'
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
: {}),
|
|
78
|
+
'server-current': {
|
|
79
|
+
host: `${window.location.origin}/`,
|
|
80
|
+
name: 'Current Server'
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
default_server: IS_DEV
|
|
84
|
+
? 'server-localhost'
|
|
85
|
+
: IS_DEMO
|
|
86
|
+
? 'server-demo'
|
|
87
|
+
: 'server-current',
|
|
88
|
+
show_server_selector: IS_DEV_OR_DEMO,
|
|
89
|
+
|
|
90
|
+
// Merge in settings that are already set via django's spa_view or for development
|
|
91
|
+
...loaded_vals
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
if (window.INVENTREE_SETTINGS.sentry_dsn) {
|
|
95
|
+
console.log('Sentry enabled');
|
|
96
|
+
Sentry.init({
|
|
97
|
+
dsn: window.INVENTREE_SETTINGS.sentry_dsn,
|
|
98
|
+
tracesSampleRate: 1.0,
|
|
99
|
+
environment: window.INVENTREE_SETTINGS.environment || 'default'
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export const getBaseUrl = (): string =>
|
|
104
|
+
window.INVENTREE_SETTINGS?.base_url || 'web';
|
|
105
|
+
|
|
106
|
+
(window as any).React = React;
|
|
107
|
+
(window as any).ReactDOM = ReactDOM;
|
|
108
|
+
(window as any).ReactDOMClient = ReactDOMClient;
|
|
109
|
+
(window as any).MantineCore = MantineCore;
|
|
110
|
+
(window as any).MantineNotifications = MantineNotifications;
|
|
111
|
+
|
|
112
|
+
ReactDOMClient.createRoot(
|
|
113
|
+
document.getElementById('root') as HTMLElement
|
|
114
|
+
).render(
|
|
115
|
+
<React.StrictMode>
|
|
116
|
+
<MainView />
|
|
117
|
+
</React.StrictMode>
|
|
118
|
+
);
|
|
119
|
+
|
|
120
|
+
// Redirect to base url if on /
|
|
121
|
+
if (window.location.pathname === '/') {
|
|
122
|
+
window.location.replace(`/${getBaseUrl()}`);
|
|
123
|
+
}
|