@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\":[\"Błąd renderowania komponentu\"],\"kH8meY\":[\"Wystąpił błąd podczas renderowania tego komponentu. Więcej informacji znajdziesz na konsoli.\"],\"MHrjPM\":[\"Title\"],\"bR26mb\":[\"Błąd podczas skanowania\"],\"fvJQqd\":[\"Błąd podczas zatrzymywania\"],\"/Snx90\":[\"Start scanning by selecting a camera and pressing the play button.\"],\"yFRXH8\":[\"Zatrzymaj skanowanie\"],\"m3BKG+\":[\"Rozpocznij skanowanie\"],\"ap+FLU\":[\"Kod kreskowy\"],\"I+FvbD\":[\"Scan\"],\"XlKBRl\":[\"Camera Input\"],\"n89Qe0\":[\"Scanner Input\"],\"Hl6ptb\":[\"Barcode Data\"],\"6bgCex\":[\"No barcode data\"],\"14K7ED\":[\"Scan or enter barcode data\"],\"SlfejT\":[\"Błąd\"],\"tEKWTi\":[\"Enter barcode data\"],\"fNvDwV\":[\"Zeskanuj kod kreskowy\"],\"sikegI\":[\"No matching item found\"],\"I3WmwV\":[\"Failed to scan barcode\"],\"vAoQxm\":[\"Niski (7%)\"],\"xuqOBP\":[\"Średni (15%)\"],\"cxfKe+\":[\"Kwartyl (25%)\"],\"rgHRyZ\":[\"Wysoki (30%)\"],\"/FLHWb\":[\"Custom barcode\"],\"AjTb8p\":[\"A custom barcode is registered for this item. The shown code is not that custom barcode.\"],\"vDT9iq\":[\"Dane kodu kreskowego:\"],\"md4cw+\":[\"Wybierz poziom korekty błędów\"],\"59QdRH\":[\"Failed to link barcode\"],\"yzF66j\":[\"Link\"],\"GZnnMw\":[\"This will remove the link to the associated barcode\"],\"ut1J8k\":[\"Odłącz Kod Kreskowy\"],\"oyvgJt\":[\"Otwórz w interfejsie administratora\"],\"/4gGIX\":[\"Copy to clipboard\"],\"6V3Ea3\":[\"Skopiowano\"],\"he3ygx\":[\"Kopiuj\"],\"5cY8gX\":[\"Printing Labels\"],\"T6GYw9\":[\"Printing Reports\"],\"fWLk/q\":[\"Printing\"],\"dI97M9\":[\"Printing completed successfully\"],\"pT7uop\":[\"Label printing completed successfully\"],\"kjqRDg\":[\"Drukuj etykietę\"],\"3Dx00w\":[\"The label could not be generated\"],\"BZz12Q\":[\"Wydrukuj\"],\"qsurSb\":[\"Drukuj raport\"],\"ziAjHi\":[\"Generate\"],\"nu+rR/\":[\"Report printing completed successfully\"],\"cvLQZH\":[\"The report could not be generated\"],\"/oz6DG\":[\"Akcje druku\"],\"Y93N6T\":[\"Drukuj etykiety\"],\"ClULGR\":[\"Drukuj raporty\"],\"3mIfxA\":[\"Remove this row\"],\"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\":[\"Open spotlight\"],\"q0ylYE\":[\"Unsubscribe from part\"],\"wFwgKk\":[\"Zaliczone\"],\"qcloGZ\":[\"Niezaliczone\"],\"l75CjT\":[\"Tak\"],\"1UzENP\":[\"Nie\"],\"jPJ7ye\":[\"Calendar Filters\"],\"1xwZj/\":[\"Previous month\"],\"XEb3iO\":[\"Select month\"],\"g8JmSC\":[\"Next month\"],\"ECXmiK\":[\"Download data\"],\"e7eZuA\":[\"Order Updated\"],\"uNg5Jm\":[\"Error updating order\"],\"ddrz1m\":[\"Overdue\"],\"1tCrqz\":[\"No Widgets Selected\"],\"9Tu3p3\":[\"Use the menu to add widgets to the dashboard\"],\"ubMDQ+\":[\"Accept Layout\"],\"7p5kLi\":[\"Kokpit\"],\"NZubw3\":[\"Edytuj układ\"],\"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\":[\"Obserwowane komponenty\"],\"8FlX7D\":[\"Show the number of parts which you have subscribed to\"],\"GuGbPw\":[\"Obserwowane kategorie\"],\"Ze1ycm\":[\"Show the number of part categories which you have subscribed to\"],\"UgdO7s\":[\"Mała ilość w magazynie\"],\"ubzHR4\":[\"Show the number of parts which are low on stock\"],\"Iq/utX\":[\"Required for Build Orders\"],\"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\":[\"Overdue Build Orders\"],\"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\":[\"Zaległe zlecenia sprzedaży\"],\"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\":[\"Zaległe zlecenia zakupu\"],\"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\":[\"Overdue Return Orders\"],\"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\":[\"Pierwsze Kroki\"],\"VAYCzI\":[\"Pierwsze kroki z InvenTree\"],\"D672yr\":[\"News Updates\"],\"jn9KFI\":[\"The latest news from InvenTree\"],\"4i3x9F\":[\"Zmień tryb kolorów\"],\"B4aZZ/\":[\"Change the color mode of the user interface\"],\"9Ogg2c\":[\"Change Language\"],\"aOzZOm\":[\"Change the language of the user interface\"],\"+s1J8k\":[\"Oznacz jako przeczytane\"],\"cAmrrc\":[\"Requires Superuser\"],\"v8ARYJ\":[\"This widget requires superuser permissions\"],\"q089rs\":[\"No News\"],\"FOPS6f\":[\"There are no unread news items\"],\"agYOFs\":[\"Superuser\"],\"uXsB4R\":[\"Staff\"],\"3WlEIN\":[\"Email: \"],\"9Qs99X\":[\"Email:\"],\"ATGKLv\":[\"Nie zdefiniowano nazwy\"],\"yM9e7f\":[\"Usuń obraz\"],\"R3/yR2\":[\"Usunąć powiązany obrazek z tego elementu?\"],\"dEgA5A\":[\"Anuluj\"],\"t/YqKh\":[\"Usuń\"],\"irD+Qq\":[\"Przeciągnij i upuść, aby przesłać\"],\"lckouq\":[\"Kliknij, aby wybrać plik(i)\"],\"44Z8LC\":[\"Image uploaded\"],\"k26cjD\":[\"Image has been uploaded successfully\"],\"ae3dey\":[\"Upload Error\"],\"xCJdfg\":[\"Wyczyść\"],\"hQRttt\":[\"Zatwierdź\"],\"8rV56y\":[\"Wybierz z istniejących obrazów\"],\"bAiEJP\":[\"Wybierz obraz\"],\"5hbUXw\":[\"Download remote image\"],\"BOkCZT\":[\"Prześlij nowy obraz\"],\"lnCMdg\":[\"Prześlij obrazek\"],\"+jw/c1\":[\"Usuń obraz\"],\"0yQo/k\":[\"Download Image\"],\"83hEcK\":[\"Image downloaded successfully\"],\"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\":[\"Przesłanie obrazu nie powiodło się\"],\"zzDlyQ\":[\"Sukces\"],\"AGZmwV\":[\"Image uploaded successfully\"],\"FZvELs\":[\"Notatki zapisane pomyślnie\"],\"vBI46M\":[\"Nie udało się zapisać notatek\"],\"WC5d6R\":[\"Error Saving Notes\"],\"jZKAOq\":[\"Disable Editing\"],\"9F3QxH\":[\"Zapisz notatki\"],\"A7t6PY\":[\"Close Editor\"],\"nYrVJr\":[\"Enable Editing\"],\"nWSd91\":[\"Preview Notes\"],\"bmmD8r\":[\"Edit Notes\"],\"EWPtMO\":[\"Kod\"],\"HxuuQd\":[\"Failed to parse error response from server.\"],\"DnCO2h\":[\"Podgląd niedostępny, kliknij \\\"Odśwież podgląd\\\".\"],\"yz4FE1\":[\"Podgląd PDF\"],\"AK4HwH\":[\"Błąd ładowania szablonu\"],\"1khwzo\":[\"Wystąpił błąd zapisywania szablonu\"],\"wWZgjk\":[\"Could not load the template from the server.\"],\"wYQmW6\":[\"Save & Reload preview?\"],\"1xlsgl\":[\"Zapisz i odśwież podgląd\"],\"Jsx2cQ\":[\"Czy na pewno chcesz zapisać i przeładować podgląd?\"],\"3UWPPc\":[\"To render the preview the current template needs to be replaced on the server with your modifications which may break the label if it is under active use. Do you want to proceed?\"],\"ckHR23\":[\"Zapisz i odśwież\"],\"KMIjmd\":[\"Podgląd zaktualizowany\"],\"NyL8gD\":[\"Podgląd został pomyślnie zaktualizowany.\"],\"ruaSzz\":[\"Save & Reload preview\"],\"TJRAGK\":[\"Odśwież podgląd\"],\"Imj0Wf\":[\"Use the currently stored template from the server\"],\"+Vw6KN\":[\"Save the current template and reload the preview\"],\"LuBSrw\":[\"to preview\"],\"zCB4kU\":[\"Wybierz instancję do podglądu\"],\"FepgSX\":[\"Błąd renderowania szablonu\"],\"AOPUbq\":[\"Client Error\"],\"yuzYd9\":[\"Client error occurred\"],\"jUhHNc\":[\"Kod statusu\"],\"v2XJD+\":[\"Powrót do strony głównej\"],\"vYV5VB\":[\"Brak uwierzytelnienia\"],\"5a3xiK\":[\"Nie jesteś zalogowany.\"],\"boJlGf\":[\"Nie znaleziono strony\"],\"CcD0eu\":[\"Strona nieistnieje\"],\"JUwB5j\":[\"Odmowa dostępu\"],\"H//rsn\":[\"Nie masz uprawnień do przeglądania tej strony.\"],\"iSWuCp\":[\"Błąd serwera\"],\"vB3crB\":[\"Wystąpił błąd serwera\"],\"3X1ZLb\":[\"Błąd formularza\"],\"rl7FGt\":[\"Form Errors Exist\"],\"nx/5z+\":[\"Istnieją błędy dla jednego lub więcej pól formularzy\"],\"EkH9pt\":[\"Aktualizuj\"],\"cnGeoo\":[\"Usuń\"],\"jCsNQS\":[\"Check your your input and try again.\"],\"rxWA39\":[\"Welcome back!\"],\"zM9Wd+\":[\"Login successfull\"],\"6cPKtu\":[\"Zalogowano pomyślnie\"],\"uKMMk4\":[\"Zalogowano pomyślnie\"],\"yfblq9\":[\"Mail delivery successfull\"],\"4GKuCs\":[\"Logowanie nie powiodło się\"],\"tnaYa/\":[\"Sprawdź dane i spróbuj ponownie.\"],\"XAIcYu\":[\"Wiadomość dostarczona\"],\"R2JMfc\":[\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\"],\"MMJM0z\":[\"Dostawa poczty nie powiodła się\"],\"zTZjMy\":[\"Lub kontynuuj za pomocą innych metod\"],\"7sNhEz\":[\"Nazwa użytkownika\"],\"k1RkIL\":[\"Twoja nazwa użytkownika\"],\"8ZsakT\":[\"Hasło\"],\"9TO8nT\":[\"Twoje hasło\"],\"XlWstl\":[\"I will use username and password\"],\"RfwZxd\":[\"Resetuj hasło\"],\"O3oNi5\":[\"Adres E-Mail\"],\"Wr5sDQ\":[\"Wyślemy Ci link do logowania - jeśli jesteś zarejestrowany\"],\"7ZOmjI\":[\"Wyślij mi e-mail\"],\"vZk5Sm\":[\"Użyj nazwy użytkownika i hasła\"],\"ADVQ46\":[\"Zaloguj się\"],\"i/TzEU\":[\"Wyślij e-mail\"],\"lpIMne\":[\"Passwords do not match\"],\"EoCs7m\":[\"Rejestracja powiodła się\"],\"n2c6Ul\":[\"Proszę potwierdzić swój adres e-mail, aby zakończyć rejestrację\"],\"ccnxuA\":[\"Błąd danych wejściowych\"],\"SxviKF\":[\"Check your input and try again. \"],\"kXXdWU\":[\"To będzie używane do potwierdzenia\"],\"NK5XEe\":[\"Hasło (powtórz)\"],\"R1OtIL\":[\"Powtórz hasło\"],\"fgLNSM\":[\"Rejestracja\"],\"IES56a\":[\"Lub użyj SSO\"],\"Ai2U7L\":[\"Host\"],\"6YtxFj\":[\"Nazwa\"],\"yWMzcH\":[\"Nikogo tu nie ma...\"],\"UYWLpE\":[\"Dodaj Host\"],\"tfDRzk\":[\"Zapisz\"],\"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\":[\"Serwer\"],\"eE0JZ4\":[\"Wersja\"],\"8XeFzA\":[\"Wersja API\"],\"ohUJJM\":[\"Wtyczki\"],\"RxzN1M\":[\"Enabled\"],\"E/QGRL\":[\"Disabled\"],\"3J7l5w\":[\"Worker\"],\"NnvXp5\":[\"Stopped\"],\"RiQMUh\":[\"Running\"],\"FMGfGf\":[\"Nie zaznaczono ikony\"],\"b2vAoQ\":[\"Bez kategorii\"],\"YIix5Y\":[\"Szukaj...\"],\"mkvLrG\":[\"Wybierz kategorię\"],\"SpVrYn\":[\"Wybierz paczkę\"],\"ak3DfO\":[[\"0\"],\" ikon(y)\"],\"A1taO8\":[\"Szukaj\"],\"yQE2r9\":[\"Wczytuję\"],\"AxPAXW\":[\"Nie znaleziono wyników\"],\"cBQBGb\":[\"modelRenderer entry required for tables\"],\"zVD5Ip\":[\"Brak wpisów\"],\"3GFHmF\":[\"Add new row\"],\"oDodff\":[\"Select image\"],\"sGeXL3\":[\"Miniaturka\"],\"fawxGh\":[\"Import wierszy\"],\"SdvoV5\":[\"Proszę czekać na zaimportowanie danych\"],\"aydx5i\":[\"Nastąpił błąd podczas importowania %s\"],\"bo3Q/V\":[\"Edytuj dane\"],\"f2AJjl\":[\"Usuń wiersz\"],\"IqKCNQ\":[\"Wiersz\"],\"H14AdY\":[\"Wiersz zawiera błędy\"],\"g3UF2V\":[\"Zaakceptuj\"],\"nfagfM\":[\"Ważny\"],\"p385PV\":[\"Filtruj według stanu walidacji wierszy\"],\"bD8I7O\":[\"Zakończono\"],\"ytCibL\":[\"Filtruj według statusu ukończenia wiersza\"],\"Fgr3ay\":[\"Importuj wybrane wiersze\"],\"6dO0jk\":[\"Przetwarzanie danych\"],\"Vw8l6h\":[\"Wystąpił błąd\"],\"TJu1/1\":[\"Wybierz kolumnę lub pozostaw puste, aby zignorować to pole.\"],\"mT7k1w\":[\"Select a column from the data file\"],\"Wew5xr\":[\"Map data columns to database fields\"],\"TEAVx8\":[\"Imported Column Name\"],\"ojDp4A\":[\"Ignoruj to pole\"],\"AHjxLx\":[\"Odwzorowanie kolumn danych do pól bazy\"],\"Y+Sfcf\":[\"Akceptuj mapowanie kolumn\"],\"3mVQ03\":[\"Pole bazy danych\"],\"Us9epU\":[\"Opis pola\"],\"qsUkVg\":[\"Zaimportowana kolumna\"],\"aQ8swY\":[\"Wartość domyślna\"],\"IQ3gAw\":[\"Wyślij plik\"],\"KXVPhI\":[\"Przypisz kolumny\"],\"FhMhTR\":[\"Importuj dane\"],\"eHQfWJ\":[\"Przetwórz dane\"],\"b8ESNU\":[\"Zakończ import\"],\"Lcq+IU\":[\"Cancel import session\"],\"4fgz8U\":[\"Import zakończony\"],\"zdT9Dy\":[\"Dane zostały zaimportowane\"],\"yz7wBu\":[\"Zamknij\"],\"SC1Cur\":[\"Status nieznany\"],\"+6NHN9\":[\"Sesja importu ma nieznany status\"],\"CTRRU5\":[\"Importowanie danych\"],\"JT9Hk8\":[\"Importowanie wpisów\"],\"drGZDS\":[\"Imported Rows\"],\"l1p940\":[\"Imported rows\"],\"0zpgxV\":[\"Options\"],\"3GmetT\":[\"Link custom barcode\"],\"heU0Hk\":[\"Akcje kodów kreskowych\"],\"mYTVOy\":[\"View Barcode\"],\"PuPuVa\":[\"Pokaż kod kreskowy\"],\"3Bbgw2\":[\"Połącz Kod Kreskowy\"],\"utafdp\":[\"Link a custom barcode to this item\"],\"AlfG1i\":[\"Odłącz własny kod kreskowy\"],\"ePK91l\":[\"Edytuj\"],\"Qpg4KV\":[\"Edytuj element\"],\"ZatbPe\":[\"Usuń element\"],\"YJMNeo\":[\"Wstrzymaj\"],\"euc6Ns\":[\"Zduplikuj\"],\"QXHPgY\":[\"Duplikuj pozycję\"],\"eelNjA\":[\"Scan barcode data here using barcode scanner\"],\"QcKPg2\":[\"Toggle color scheme\"],\"IvkbIT\":[\"Czytaj dalej\"],\"29VNqC\":[\"Nieznany błąd\"],\"nlJhkA\":[\"An error occurred:\"],\"Qoq+GP\":[\"Read more\"],\"EdQY6l\":[\"Brak\"],\"DVAy0b\":[\"Logo InvenTree\"],\"k/sb6z\":[\"Select language\"],\"cUyJH1\":[\"Ta informacja jest dostępna tylko dla użytkowników personelu\"],\"3TnJRX\":[\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\"],\"etqXdW\":[\"PLH\"],\"7UvbG+\":[\"Wersja InvenTree\"],\"DN+WU3\":[\"Your InvenTree version status is\"],\"w4AvPz\":[\"Wersja Pythona\"],\"g27hpz\":[\"Wersja Django\"],\"wh0+YJ\":[\"Hash commitu\"],\"26rItp\":[\"Data commitu\"],\"2dP9Tz\":[\"Gałąź commitu\"],\"/4WpyD\":[\"Informacje o wersji\"],\"Rj01Fz\":[\"Linki\"],\"TvY/XA\":[\"Dokumentacja\"],\"PnzsrT\":[\"Source Code\"],\"lDIOek\":[\"Autorzy\"],\"gI5gJF\":[\"Aplikacja mobilna\"],\"f43Mpl\":[\"Prześlij raport o błędzie\"],\"28DkqT\":[\"InvenTree Documentation\"],\"Fh6/a1\":[\"View Code on GitHub\"],\"Z3HrI+\":[\"Kopiuj informacje o wersji\"],\"1QfxQT\":[\"Dismiss\"],\"Hz3dBg\":[\"Wersja rozwojowa\"],\"DS7OAx\":[\"Aktualna\"],\"YXMY4w\":[\"Dostępna aktualizacja\"],\"4JhzII\":[\"Brak dostępnego tekstu licencji\"],\"fSZVIc\":[\"Brak informacji - prawdopodobnie jest problem z serwerem\"],\"7CwvjQ\":[\"Wczytywanie informacji o licencji\"],\"NIRUL8\":[\"Nie udało się pobrać danych dotyczących licencji\"],\"7IJNlG\":[\"Pakiety: \",[\"key\"]],\"GU7xAr\":[\"Unknown response\"],\"3164SS\":[\"No scans yet!\"],\"RWw9Lg\":[\"Close modal\"],\"CIEoqM\":[\"Nazwa instancji\"],\"vmmz7E\":[\"Wersja serwera\"],\"O4PAXt\":[\"Bebug Mode\"],\"JY5Oyv\":[\"Baza danych\"],\"gri3Lv\":[\"Tryb Debugowania\"],\"odYm26\":[\"Serwer jest uruchomiony w trybie debugowania\"],\"QS5AeO\":[\"Tryb Dockera\"],\"ld9FQa\":[\"Serwer jest wdrożony z użyciem Dockera\"],\"16gOdK\":[\"Obsługa wtyczek\"],\"GhZ9CI\":[\"Obsługa wtyczek włączona\"],\"VL9bCO\":[\"Obsługa wtyczek wyłączona\"],\"/yfSe4\":[\"Status serwera\"],\"yGS9cI\":[\"Zdrowy\"],\"IueqnF\":[\"Wykryto problemy\"],\"/XqPnF\":[\"Proces w tle\"],\"Oe/dvo\":[\"Proces w tle nie jest uruchomiony\"],\"G5zNMX\":[\"Ustawienia poczty e-mail\"],\"QFMozt\":[\"Ustawienia e-mail nie zostały skonfigurowane\"],\"+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\":[\"Powiadomienia\"],\"s4BX3A\":[\"Alerts\"],\"cNfZ4r\":[\"Nic nie znaleziono...\"],\"vERlcd\":[\"Profile\"],\"Tz0i8g\":[\"Ustawienia\"],\"Puv7+X\":[\"Ustawienia konta\"],\"T3FM0r\":[\"Account settings\"],\"zNkWa6\":[\"Ustawienia systemowe\"],\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":[\"Switch to pseudo language\"],\"uTLn08\":[\"Centrum Admina\"],\"nOhz3x\":[\"Wyloguj się\"],\"N6Pxr9\":[\"View all\"],\"ZDIydz\":[\"Get started\"],\"BQDL+H\":[\"Overview over high-level objects, functions and possible usecases.\"],\"wRR604\":[\"Pages\"],\"pmRbKZ\":[\"Komponenty\"],\"blbbPS\":[\"Stan\"],\"3ctapx\":[\"Manufacturing\"],\"UOTpFa\":[\"Zakupy\"],\"mUv9U4\":[\"Sprzedaże\"],\"Sxm8rQ\":[\"Użytkownicy\"],\"zhrjek\":[\"Grupy\"],\"ekfzWq\":[\"User Settings\"],\"UxKoFf\":[\"Nawigacja\"],\"7L01XJ\":[\"Akcje\"],\"uyJsf6\":[\"O nas\"],\"onllUU\":[\"Oznacz wszystkie jako przeczytane\"],\"/WA/tl\":[\"Pokaż wszystkie powiadomienia\"],\"t2pqHO\":[\"Nie masz żadnych nowych powiadomień.\"],\"FXAptz\":[\"No Overview Available\"],\"RPZ4Cq\":[\"No overview available for this model type\"],\"XN9Er0\":[\"View all results\"],\"mO8KLE\":[\"wyniki\"],\"8OvYje\":[\"Remove search group\"],\"9RecCt\":[\"Suppliers\"],\"E0ub4Q\":[\"Manufacturers\"],\"NihQNk\":[\"Customers\"],\"Ev2r9A\":[\"No results\"],\"Dwt0g3\":[\"Wpisz frazę, którą chcesz wyszukać\"],\"C0TDNl\":[\"Refresh search results\"],\"9UYKcs\":[\"Opcje wyszukiwania\"],\"qkCZlJ\":[\"Wyszukiwanie Regex\"],\"roauu/\":[\"Wyszukiwanie całych słów\"],\"hJCuaV\":[\"Wystąpił błąd podczas wyszukiwania\"],\"MA3x23\":[\"No Results\"],\"dTtbrX\":[\"Brak dostępnych wyników wyszukiwania\"],\"w/Sphq\":[\"Attachments\"],\"1DBGsz\":[\"Notes\"],\"px+tn2\":[\"Locate Item\"],\"AXn3rz\":[\"Item location requested\"],\"nNlKYH\":[\"Plugin Inactive\"],\"xwdvWr\":[\"Plugin is not active\"],\"5HArLW\":[\"Plugin Information\"],\"Nu4oKW\":[\"Description\"],\"VbeIOx\":[\"Author\"],\"mYGY3B\":[\"Date\"],\"F6pfE9\":[\"Active\"],\"/L+cAM\":[\"Package Name\"],\"AJd5vK\":[\"Installation Path\"],\"++LBSt\":[\"Builtin\"],\"mGYa19\":[\"Package\"],\"eKHY3W\":[\"Ustawienia wtyczki\"],\"BFm1Jm\":[\"Konfiguracja wtyczki\"],\"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\":[\"Error occurred while rendering the template editor.\"],\"JDFeOe\":[\"Error Loading Plugin Editor\"],\"KJx0of\":[\"Error occurred while rendering the template preview.\"],\"OqfJdc\":[\"Error Loading Plugin Preview\"],\"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\":[\"Komponent\"],\"hAddRl\":[\"Part Parameter Template\"],\"UrnQgP\":[\"Part Parameter Templates\"],\"75lDy5\":[\"Part Test Template\"],\"KevMsQ\":[\"Part Test Templates\"],\"nne72x\":[\"Część dostawcy\"],\"FcNRrt\":[\"Części dostawcy\"],\"bisS0I\":[\"Część Producenta\"],\"d0fBfb\":[\"Części producenta\"],\"QXANxH\":[\"Kategoria części\"],\"2GkbLI\":[\"Kategorie części\"],\"igx8Og\":[\"Element magazynowy\"],\"Jbck4N\":[\"Elementy magazynowe\"],\"adXdas\":[\"Lokacja stanu\"],\"1eBWAw\":[\"Lokacje stanów\"],\"DjwC2f\":[\"Stock Location Type\"],\"vkPSyZ\":[\"Stock Location Types\"],\"cE4TWF\":[\"Historia magazynu\"],\"rewkgt\":[\"Historia magazynu\"],\"iSiFYa\":[\"Kompilacja\"],\"3400Lv\":[\"Kompilacje\"],\"9TLpo1\":[\"Build Line\"],\"CRYIQ0\":[\"Build Lines\"],\"LN2ON5\":[\"Build Item\"],\"A7FuwR\":[\"Build Items\"],\"7i8j3G\":[\"Firma\"],\"s2QZS6\":[\"Firmy\"],\"Sdfr6G\":[\"Kod projektu\"],\"AklCpf\":[\"Kody projektu\"],\"KxySMG\":[\"Zlecenie zakupu\"],\"85Yvr2\":[\"Zlecenia zakupu\"],\"Enr0Pf\":[\"Pozycja zlecenia zakupu\"],\"MXjnQS\":[\"Pozycje zlecenia zakupu\"],\"LozYBo\":[\"Zlecenie sprzedaży\"],\"B1TL+X\":[\"Zlecenia Sprzedaży\"],\"qGSobR\":[\"Sales Order Shipment\"],\"D/EkfS\":[\"Sales Order Shipments\"],\"Z6ve1w\":[\"Return Order\"],\"LlTg8M\":[\"Return Orders\"],\"Frsz7D\":[\"Return Order Line Item\"],\"4dCpFa\":[\"Return Order Line Items\"],\"Du6bPw\":[\"Adres\"],\"bYmAV1\":[\"Adresy\"],\"jfC/xh\":[\"Kontakt\"],\"gVfVfe\":[\"Kontakty\"],\"LtI9AS\":[\"Właściciel\"],\"CYRJEX\":[\"Właściciele\"],\"7PzzBU\":[\"Użytkownik\"],\"L8fEEm\":[\"Grupa\"],\"e5WBGh\":[\"Importuj sesje\"],\"1dn8uK\":[\"Importuj sesje\"],\"WT825B\":[\"Purchase Order Line Item\"],\"aKf3M5\":[\"Szablon etykiety\"],\"0qHiFS\":[\"Szablony etykiet\"],\"F/A+39\":[\"Szablon Raportu\"],\"SX006I\":[\"Szablony raportów\"],\"7ybWp/\":[\"Konfiguracje wtyczki\"],\"f9cDxV\":[\"Typ zawartości\"],\"F7Jcuy\":[\"Typy zawartości\"],\"tTUob1\":[\"Unknown Model\"],\"ifEZiy\":[\"Selection List\"],\"2q2/qs\":[\"Selection Lists\"],\"UirGxE\":[\"Errors\"],\"hN+9ZV\":[\"Purchase Order Line Items\"],\"rk/y41\":[\"Unknown Models\"],\"4fws5M\":[\"Wysyłka\"],\"NoNwIX\":[\"Nieaktywny\"],\"AbC1Px\":[\"Brak w magazynie\"],\"AXeJt4\":[\"Numer seryjny\"],\"VbWX2u\":[\"Ilość\"],\"rsx3xA\":[\"Batch\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"mjN1LS\":[\"Zmień ustawienia\"],\"1onc6y\":[\"Setting \",[\"key\"],\" updated successfully\"],\"C3htzi\":[\"Ustawienie zostało zaktualizowane\"],\"n/n6vh\":[\"Ustawienie \",[\"0\"],\" zaktualizowane pomyślnie\"],\"CsUgn+\":[\"Błąd edycji ustawień\"],\"3CUVvD\":[\"Nie podano ustawień\"],\"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\":[\"Supplier part created\"],\"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\":[\"Arabski\"],\"KhEBDR\":[\"Bułgarski\"],\"w9VTXG\":[\"Czeski\"],\"Fo2vDn\":[\"Duński\"],\"DDcvSo\":[\"Niemiecki\"],\"CZXzs4\":[\"Grecki\"],\"lYGfRP\":[\"Angielski\"],\"65A04M\":[\"Hiszpański\"],\"xB5BGV\":[\"Hiszpański (Meksykański)\"],\"l2pzUk\":[\"Estoński\"],\"A64kM8\":[\"Farsi / Perski\"],\"USZ2N6\":[\"Fiński\"],\"nLC6tu\":[\"Francuski\"],\"3oTCgM\":[\"Hebrajski\"],\"tGjibo\":[\"Hinduski\"],\"mkWad2\":[\"Węgierski\"],\"Lj7sBL\":[\"Włoski\"],\"dFtidv\":[\"Japoński\"],\"h6S9Yz\":[\"Koreański\"],\"Ot2qtY\":[\"Lithuanian\"],\"/0YsGP\":[\"Łotewski\"],\"KIjvtr\":[\"Holenderski\"],\"1IipHp\":[\"Norweski\"],\"trnWaw\":[\"Polski\"],\"MOERNx\":[\"Portugalski\"],\"KCh9+J\":[\"Portugalski (Brazylijski)\"],\"uJc01W\":[\"Rumuński\"],\"nji0/X\":[\"Rosyjski\"],\"paESr6\":[\"Słowacki\"],\"LSdcWW\":[\"Słoweński\"],\"9aBtdW\":[\"Serbian\"],\"UaISq3\":[\"Szwedzki\"],\"SUr44j\":[\"Tajski\"],\"Kz91g/\":[\"Turecki\"],\"V9+2pH\":[\"Ukraiński\"],\"fROFIL\":[\"Wietnamski\"],\"6imsQS\":[\"Chiński (uproszczony)\"],\"DM4gBB\":[\"Chiński (tradycyjny)\"],\"i0qMbr\":[\"Home\"],\"kwda2l\":[\"Przejdź do kokpitu InvenTree\"],\"hqbo9J\":[\"Odwiedź dokumentację, aby dowiedzieć się więcej o InvenTree\"],\"iDxamh\":[\"O InvenTree\"],\"Q5S3DY\":[\"About this Inventree instance\"],\"gfhzPz\":[\"O InvenTree.org\"],\"mHGdhG\":[\"Informacje o serwerze\"],\"Ckl0UI\":[\"About this InvenTree instance\"],\"I/Xnkt\":[\"Informacje o licencji\"],\"L23uA9\":[\"Licenses for dependencies of the service\"],\"rmlxV1\":[\"Otwórz nawigację\"],\"xIiHCw\":[\"Otwórz główne menu nawigacji\"],\"9j/kJy\":[\"Scan a barcode or QR code\"],\"txYotp\":[\"Przejdź do Centrum Administratora\"],\"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\":[\"Dokumentacja API InvenTree\"],\"BOAupq\":[\"Podręcznik programisty\"],\"kUcL4g\":[\"Podręcznik programisty InvenTree\"],\"/lDBHm\":[\"FAQ\"],\"a3pVqb\":[\"Najczęściej zadawane pytania\"],\"52Z0/R\":[\"GitHub Repository\"],\"IRQJed\":[\"InvenTree source code on GitHub\"],\"tBjIo1\":[\"Licenses for packages used by InvenTree\"],\"yPiRbD\":[\"Informacje o systemie\"],\"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+\":[\"Build Output\"],\"uAQUqI\":[\"Status\"],\"0iR9fu\":[\"Complete Build Outputs\"],\"N3avUJ\":[\"Build outputs have been completed\"],\"69qbY/\":[\"Scrap Build Outputs\"],\"C+tSd4\":[\"Build outputs have been scrapped\"],\"duNUx4\":[\"Selected build outputs will be deleted\"],\"xS5DxW\":[\"Cancel Build Outputs\"],\"cdFWk4\":[\"Build outputs have been cancelled\"],\"A9JO1q\":[\"Remove line\"],\"A/ybx7\":[\"Allocated\"],\"/00Ond\":[\"Source Location\"],\"IArqwk\":[\"Select the source location for the stock allocation\"],\"L1LMmH\":[\"Allocate Stock\"],\"23SrHL\":[\"Stock items allocated\"],\"E7xvdq\":[\"Company updated\"],\"7VIaU3\":[\"Subscribed\"],\"wyHaGh\":[\"Subscribe to notifications for this part\"],\"22eAtb\":[\"Create Part\"],\"LDesI6\":[\"Part created\"],\"+g4LWF\":[\"Part updated\"],\"oATGL2\":[\"Kategoria części nadrzędnej\"],\"8Qu8gC\":[\"Subscribe to notifications for this category\"],\"W778m0\":[\"Assign Batch Code and Serial Numbers\"],\"K5pQC8\":[\"Assign Batch Code\"],\"RL9/J8\":[\"Wybierz lokalizację\"],\"LNKjyK\":[\"Item Destination selected\"],\"q3WAIO\":[\"Part category default location selected\"],\"K1Mf+T\":[\"Received stock location selected\"],\"ALFlH9\":[\"Wybrano domyślną lokalizację\"],\"G8Z9OY\":[\"Assign Batch Code\",[\"0\"]],\"zMFs5V\":[\"Remove item from list\"],\"TJYLHZ\":[\"Ustaw lokalizację\"],\"okjJiB\":[\"Set Expiry Date\"],\"O7MZ1G\":[\"Dostosuj opakowanie\"],\"Gt4cm5\":[\"Zmień status\"],\"nxv8yE\":[\"Dodaj notatkę\"],\"wJijgU\":[\"Lokalizacja\"],\"GFtCDL\":[\"Serial numbers\"],\"j9qXAA\":[\"Zapisz w domyślnej lokalizacji\"],\"Co8OYS\":[\"Store at line item destination \"],\"NOgnJu\":[\"Store at line item destination\"],\"CKgjtC\":[\"Store with already received stock\"],\"Vea6Aj\":[\"Kod partii\"],\"s848yO\":[\"Enter batch code for received items\"],\"VzQT2x\":[\"Numery seryjne\"],\"ig+UDq\":[\"Enter serial numbers for received items\"],\"uaSvqt\":[\"Expiry Date\"],\"ICgiSv\":[\"Enter an expiry date for received items\"],\"z1u8Wy\":[\"Receive line items\"],\"pD/Ew0\":[\"Opakowanie\"],\"KiJn9B\":[\"Notatka\"],\"y90mqQ\":[\"SKU\"],\"fZ5Vnu\":[\"Otrzymano\"],\"MXlhj9\":[\"Receive Line Items\"],\"zFmwOr\":[\"Items received\"],\"iwAbO1\":[\"Receive Items\"],\"9U/ZsL\":[\"Item received into stock\"],\"iAY2dt\":[\"Next batch code\"],\"TVYdHj\":[\"Następny numer seryjny\"],\"4xXnZr\":[\"Create Stock Item\"],\"qyS7x9\":[\"Dodaj podaną ilość jako paczkę zamiast poszczególnych produktów\"],\"gqrPgW\":[\"Stock item updated\"],\"LWFE8j\":[\"Wprowadź początkową ilość dla tego towaru\"],\"0dR85g\":[\"Wprowadź numery seryjne dla nowego stanu (lub pozostaw puste)\"],\"Y3/0dR\":[\"Stock Status\"],\"bJLEQT\":[\"Dodaj element magazynowy\"],\"B+pzHp\":[\"Select the part to install\"],\"AEaskR\":[\"Confirm Stock Transfer\"],\"Z3FXyt\":[\"Ładowanie...\"],\"b+SPUR\":[\"Przenieś do domyślnej lokalizacji\"],\"QWdKwH\":[\"Przenieś\"],\"zn38D/\":[\"Na stanie\"],\"m16xKo\":[\"Dodaj\"],\"wBMjJ2\":[\"Ilość\"],\"smUxso\":[\"Dodaj stan\"],\"2kGS2K\":[\"Stock added\"],\"dxvf6V\":[\"Usuń stan\"],\"uMaw0F\":[\"Stock removed\"],\"9efe+k\":[\"Przenieś stan\"],\"02r6MH\":[\"Stock transferred\"],\"n/p2QJ\":[\"Policz stan\"],\"iEFfQA\":[\"Stock counted\"],\"Y+vtBl\":[\"Zmień status stanu magazynowego\"],\"dbA8fL\":[\"Stock status changed\"],\"z5kN6j\":[\"Merge Stock\"],\"BSKV/s\":[\"Stock merged\"],\"i2FExn\":[\"Assign Stock to Customer\"],\"zTh3Rb\":[\"Stock assigned to customer\"],\"khKVoc\":[\"Delete Stock Items\"],\"9Y/rsA\":[\"Stock deleted\"],\"9P2CtI\":[\"Parent stock location\"],\"ef6vAZ\":[\"Entries\"],\"f/qYPq\":[\"List of entries to choose from\"],\"wMHvYH\":[\"Value\"],\"87a/t/\":[\"Label\"],\"UFBeQV\":[\"Bad request\"],\"dA/8If\":[\"Unauthorized\"],\"7JBW66\":[\"Forbidden\"],\"KPx1UV\":[\"Not found\"],\"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\":[\"Wylogowano\"],\"DMjmJd\":[\"Successfully logged out\"],\"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\":[\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\"],\"WhimMi\":[\"Reset failed\"],\"bNsW3s\":[\"Zalogowano\"],\"IBfR77\":[\"Successfully logged in\"],\"Ov7CoV\":[\"Failed to set up MFA\"],\"Hw2MHB\":[\"Hasło ustawione\"],\"+p8fKY\":[\"Hasło zostało ustawione pomyślnie. Możesz teraz zalogować się przy użyciu nowego hasła\"],\"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\":[\"Nie zaimplementowano\"],\"WvSApV\":[\"This feature is not yet implemented\"],\"sJK6pq\":[\"Permission denied\"],\"3WjGlZ\":[\"Nie masz uprawnień do wykonania tej czynności\"],\"J7PX+R\":[\"Nieprawidłowy kod odpowiedzi\"],\"78bD8l\":[\"Serwer zwrócił status \",[\"returnCode\"]],\"xY9s5E\":[\"Timeout\"],\"g/KPkG\":[\"The request timed out\"],\"gAwkCm\":[\"Exporting Data\"],\"CEVW38\":[\"Export Data\"],\"GS+Mus\":[\"Export\"],\"TCOQbo\":[\"Process completed successfully\"],\"gzjOvt\":[\"Process failed\"],\"Jurdjg\":[\"Element utworzony\"],\"36MpJH\":[\"Element zaktualizowany\"],\"GsfE+I\":[\"Items Updated\"],\"rmhQEk\":[\"Update multiple items\"],\"lUQRkn\":[\"Element został usunięty\"],\"XtpCjZ\":[\"Czy na pewno chcesz usunąć ten element?\"],\"S1C0yM\":[\"Ostatni numer seryjny\"],\"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\":[\"Sprawdzanie, czy jesteś już zalogowany\"],\"bX1aQ5\":[\"Brak wyboru\"],\"BL4vL0\":[\"Welcome, log in below\"],\"qJ5FUT\":[\"Register below\"],\"z0t9bb\":[\"Zaloguj się\"],\"wIGnZX\":[\"Logging you in\"],\"ln9/n9\":[\"Nie masz konta?\"],\"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\":[\"Wróć do logowania\"],\"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\":[\"Ustaw nowe hasło\"],\"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\":[\"Błąd: \",[\"0\"]],\"MVDSZK\":[\"An unexpected error has occurred\"],\"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\":[\"Selected elements are not known\"],\"Oik3bo\":[\"Multiple object types selected\"],\"oGDiXN\":[\"Actions ...\"],\"9dx+P4\":[\"Actions ... \"],\"kSFUZe\":[\"Barcode Scanning\"],\"n5kv5D\":[\"Barcode Input\"],\"bwRvnp\":[\"Action\"],\"65vtJ8\":[\"No Items Selected\"],\"pS7MTY\":[\"Manual input\"],\"mB/UHi\":[\"Scan and select items to perform actions\"],\"29Om2/\":[\"Image Barcode\"],\"sQhVFe\":[[\"0\"],\" items selected\"],\"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\":[\"First Name\"],\"UXBCwc\":[\"Last Name\"],\"7eE++L\":[\"First name:\"],\"0ib+Ql\":[\"Staff Access\"],\"FSN9CU\":[\"Last name:\"],\"0gS7M5\":[\"Display Name\"],\"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\":[\"Wyłączone\"],\"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\":[\"The following email addresses are associated with your account:\"],\"T/R+Qz\":[\"Primary\"],\"QDEWii\":[\"Verified\"],\"VBTGXl\":[\"Unverified\"],\"g/Kbij\":[\"Make Primary\"],\"+GoJJW\":[\"Re-send Verification\"],\"oLztc+\":[\"Add Email Address\"],\"Y/cuRF\":[\"E-Mail\"],\"JqLqpm\":[\"E-Mail address\"],\"/NCeM2\":[\"Error while adding email\"],\"0+CYPj\":[\"Add Email\"],\"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\":[\"Ustawienia wyświetlania\"],\"M46ISI\":[\"bars\"],\"Ai6veK\":[\"oval\"],\"8zGXnJ\":[\"dots\"],\"vXIe7J\":[\"Język\"],\"PsXasD\":[\"Use pseudo language\"],\"FEr96N\":[\"Theme\"],\"FpsvqB\":[\"Tryb kolorów\"],\"QFd2P1\":[\"Primary color\"],\"ca2AYV\":[\"Highlight color\"],\"HmI5oK\":[\"Example\"],\"160vo+\":[\"Kolor biały\"],\"u01284\":[\"Kolor czarny\"],\"bjp1xg\":[\"Promień obramowania\"],\"EBeoY+\":[\"Loader\"],\"yIoFdU\":[\"Bars\"],\"NAZGMM\":[\"Oval\"],\"2AXZa8\":[\"Dots\"],\"cQf1Ay\":[\"Reauthentication\"],\"zga9sT\":[\"OK\"],\"JBPRnC\":[\"Advanced Amininistrative Options for InvenTree\"],\"Q2lUR2\":[\"Currency\"],\"fqDzSu\":[\"Rate\"],\"aQFOy1\":[\"Exchange rates updated\"],\"OZSHCs\":[\"Exchange rate update error\"],\"HQlD/8\":[\"Refresh currency exchange rates\"],\"h+ZkcR\":[\"Last fetched\"],\"3pmGAW\":[\"Base currency\"],\"yDOdwQ\":[\"User Management\"],\"e/zrje\":[\"Data Import\"],\"9PDJnO\":[\"Data Export\"],\"iTylMl\":[\"Templates\"],\"/uOXnx\":[\"Barcode Scans\"],\"Lj612C\":[\"Zadania w tle\"],\"xlfzMJ\":[\"Raporty o błędach\"],\"W9narx\":[\"Waluty\"],\"/3MMGZ\":[\"Custom States\"],\"mSx90B\":[\"Location types\"],\"h0kQrk\":[\"Jednostki niestandardowe\"],\"TxrNvj\":[\"Parametry części\"],\"6r/kUX\":[\"Parametry kategorii\"],\"d5IWFK\":[\"Stocktake\"],\"HVuv+Z\":[\"Location Types\"],\"Qf5DYN\":[\"Maszyny\"],\"UDMjsP\":[\"Quick Actions\"],\"zYSRQY\":[\"Add a new user\"],\"NFIOKv\":[\"Opcje zaawansowane\"],\"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\":[\"Info\"],\"9/VxeC\":[\"Plugin Error Stack\"],\"TQfvsk\":[\"External plugins are not enabled for this InvenTree installation.\"],\"r6y+jM\":[\"Warning\"],\"LE9XU9\":[\"Changing the settings below require you to immediately restart the server. Do not change this while under active usage.\"],\"VvzkAV\":[\"Błędy wtyczek\"],\"zDhL7c\":[\"Page Size\"],\"XxIeKn\":[\"Landscape\"],\"F4rFGE\":[\"Attach to Model\"],\"Jo97/n\":[\"Generated Reports\"],\"mKZc+g\":[\"Stocktake Reports\"],\"HkhyUV\":[\"The background task manager service is not running. Contact your system administrator.\"],\"tA0cy1\":[\"Background Worker Not Running\"],\"sOEpG4\":[\"Oczekujce zadania\"],\"8OiyFS\":[\"Zaplanowane zadania\"],\"DJ8M4D\":[\"Zadania zakończone błędem\"],\"7aDkDK\":[\"Stock item\"],\"cZ7r5r\":[\"Build line\"],\"t9yxlZ\":[\"Reports\"],\"cShSqt\":[\"Purchase order\"],\"VnNow0\":[\"Sales order\"],\"Ncovhv\":[\"Return order\"],\"9SmsOl\":[\"Tests\"],\"tIExA3\":[\"Stock location\"],\"EbuTi3\":[\"Alias\"],\"jPCGbw\":[\"Dimensionless\"],\"iJcU0G\":[\"All units\"],\"L83fOm\":[\"Select settings relevant for user lifecycle. More available in\"],\"D4SseJ\":[\"System settings\"],\"6RDwJM\":[\"Tokens\"],\"P8fBlG\":[\"Authentication\"],\"HCTGDT\":[\"Kody kreskowe\"],\"Uox1LM\":[\"Ten panel jest placeholder.\"],\"+aCQna\":[\"Physical Units\"],\"aHCEmh\":[\"Cennik\"],\"kUZvR6\":[\"Exchange Rates\"],\"h8DugX\":[\"Etykiety\"],\"ApEshE\":[\"Raportowanie\"],\"RCVhIP\":[\"Zlecenia wykonania\"],\"rXda+w\":[\"Switch to User Setting\"],\"AeXO77\":[\"Konto\"],\"a3LDKx\":[\"Bezpieczeństwo\"],\"+4YDgS\":[\"Wyświetl opcje\"],\"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\":[\"Historia\"],\"5GPcf9\":[\"Mark as unread\"],\"j3/C3X\":[\"Delete notifications\"],\"kXDwva\":[\"Build Status\"],\"3wXEsN\":[\"IPN\"],\"6LTyxl\":[\"Revision\"],\"4DvUAJ\":[\"Custom Status\"],\"N2C89m\":[\"Reference\"],\"jqsG41\":[\"Parent Build\"],\"Ee+3kG\":[\"Build Quantity\"],\"Mzv4va\":[\"Completed Outputs\"],\"kmUN8p\":[\"Issued By\"],\"VSd7DB\":[\"View part barcode\"],\"XQACoK\":[\"Responsible\"],\"ILmSgE\":[\"Link custom barcode to part\"],\"+UKDx2\":[\"Unlink custom barcode from part\"],\"JWtsrK\":[\"Build Order updated\"],\"aZD9Yv\":[\"Any location\"],\"o35LCI\":[\"Destination Location\"],\"imB4Wr\":[\"Edit build order\"],\"BmclYe\":[\"Duplicate build order\"],\"d+F6q9\":[\"Created\"],\"ltuPrj\":[\"Delete build order\"],\"D3iCkb\":[\"Start Date\"],\"ZmykKo\":[\"Target Date\"],\"qqWcBV\":[\"Completed\"],\"98Q4bz\":[\"Build Details\"],\"SgduFH\":[\"Line Items\"],\"E9en8O\":[\"Incomplete Outputs\"],\"MD2yP5\":[\"Allocated Stock\"],\"US3GCq\":[\"Consumed Stock\"],\"YlY+VD\":[\"Test Statistics\"],\"CVlgqS\":[\"Child Build Orders\"],\"isbwWo\":[\"Test Results\"],\"Tyj32s\":[\"Reporting Actions\"],\"V7w5fl\":[\"Print build report\"],\"B7ynKf\":[\"Edit Build Order\"],\"59jtLx\":[\"Add Build Order\"],\"MTYJu1\":[\"Cancel Build Order\"],\"H5qWhm\":[\"Order cancelled\"],\"MPFqR0\":[\"Cancel this order\"],\"hZIvSn\":[\"Hold Build Order\"],\"3Wfk51\":[\"Place this order on hold\"],\"0NH/ob\":[\"Order placed on hold\"],\"Z4Rl+B\":[\"Issue Build Order\"],\"lLiNZC\":[\"Issue this order\"],\"R/WvFK\":[\"Order issued\"],\"Q/TP3B\":[\"Complete Build Order\"],\"DYITap\":[\"Mark this order as complete\"],\"W7TghJ\":[\"Order completed\"],\"WajCDs\":[\"Issue Order\"],\"NPZqBL\":[\"Complete Order\"],\"tDgG1Y\":[\"Build Order Actions\"],\"mVeaUg\":[\"Edit order\"],\"oi/3Pq\":[\"Duplicate order\"],\"20mLBC\":[\"Hold order\"],\"tVJk4q\":[\"Cancel order\"],\"YxwWvi\":[\"Build Order\"],\"x1gTgF\":[\"Build order created\"],\"bwuG2V\":[\"New Build Order\"],\"8x9Qq9\":[\"Table View\"],\"nhn/TI\":[\"Calendar View\"],\"On0aF2\":[\"Strona internetowa\"],\"HF6C2L\":[\"Phone Number\"],\"hzKQCy\":[\"Email Address\"],\"xjO9oI\":[\"Default Currency\"],\"PYTEl0\":[\"Supplier\"],\"+m9/3S\":[\"Manufacturer\"],\"876pfE\":[\"Customer\"],\"eDkDvt\":[\"Company Details\"],\"EjxtPT\":[\"Edit company\"],\"i4b9ex\":[\"Supplied Parts\"],\"glJbgw\":[\"Manufactured Parts\"],\"VBpmg6\":[\"Delete company\"],\"TVGEcl\":[\"Assigned Stock\"],\"HoG6cl\":[\"Edit Company\"],\"riHm27\":[\"Delete Company\"],\"z+ZEYC\":[\"Company Actions\"],\"GNd5ad\":[\"Internal Part\"],\"ZCCuT2\":[\"Manufacturer Part Number\"],\"0R4wMK\":[\"External Link\"],\"sQRZ1+\":[\"Part Details\"],\"BCSxrX\":[\"Manufacturer Details\"],\"uN9giG\":[\"Manufacturer Part Details\"],\"F18WP3\":[\"Parameters\"],\"b30yxS\":[\"Edit Manufacturer Part\"],\"uOeMYf\":[\"Add Manufacturer Part\"],\"fMDrRl\":[\"Delete Manufacturer Part\"],\"D/ppgk\":[\"Manufacturer Part Actions\"],\"WssheI\":[\"ManufacturerPart\"],\"5ZWiLz\":[\"Part Description\"],\"J9LTXQ\":[\"Pack Quantity\"],\"0lg3zX\":[\"On Order\"],\"WrzEdW\":[\"Supplier Availability\"],\"Qeo1xd\":[\"Availability Updated\"],\"lXkUEV\":[\"Availability\"],\"F+J5VC\":[\"Supplier Part Details\"],\"b447qM\":[\"Received Stock\"],\"OQkyYP\":[\"Supplier Pricing\"],\"XIY/fv\":[\"Supplier Part Actions\"],\"qZstuw\":[\"Edit Supplier Part\"],\"9Qoago\":[\"Delete Supplier Part\"],\"EREF+D\":[\"Add Supplier Part\"],\"COcNhC\":[\"No Stock\"],\"u6wzjB\":[\"System Overview\"],\"m6X3ro\":[\"Group Name\"],\"v7zrSW\":[\"Group Details\"],\"anfIXl\":[\"User Details\"],\"lej8Sf\":[\"Basic user\"],\"I6gXOa\":[\"Path\"],\"o8hZ41\":[\"Parent Category\"],\"7lonqg\":[\"Subcategories\"],\"PRKZBP\":[\"Structural\"],\"XLVNTv\":[\"Parent default location\"],\"QC5Msb\":[\"Default location\"],\"PFKWrQ\":[\"Top level part category\"],\"7fjpj0\":[\"Edit Part Category\"],\"y6iD6w\":[\"Move items to parent category\"],\"lzGbCT\":[\"Delete items\"],\"2tjyh5\":[\"Delete Part Category\"],\"PJYQQn\":[\"Parts Action\"],\"ZqK0DP\":[\"Action for parts in this category\"],\"QgH9YK\":[\"Child Categories Action\"],\"ISGGrw\":[\"Action for child categories in this category\"],\"O/o81A\":[\"Category Actions\"],\"wp9B4i\":[\"Category Details\"],\"KCpl4N\":[\"Build Order Allocations\"],\"DaWMWw\":[\"Sales Order Allocations\"],\"ji2aTl\":[\"Variant of\"],\"eYZfUh\":[\"Revision of\"],\"K7tIrx\":[\"Category\"],\"xuaXgj\":[\"Default Location\"],\"6uSImw\":[\"Category Default Location\"],\"QrhaVg\":[\"Units\"],\"/n/HCO\":[\"Keywords\"],\"oGd3rK\":[\"Available Stock\"],\"z6SfpV\":[\"Variant Stock\"],\"3K8S+7\":[\"Minimum Stock\"],\"/MB+gl\":[\"On order\"],\"xsXvog\":[\"Required for Orders\"],\"hHWm3x\":[\"Allocated to Build Orders\"],\"I4qXcg\":[\"Allocated to Sales Orders\"],\"zt/pSE\":[\"Edit part\"],\"S/9nwz\":[\"Can Build\"],\"FFYpjf\":[\"Duplicate part\"],\"BE5Q6v\":[\"In Production\"],\"metDDP\":[\"Delete part\"],\"G2fuEb\":[\"Locked\"],\"0ceRuG\":[\"Template Part\"],\"+e3Z9N\":[\"Assembled Part\"],\"kux4zT\":[\"Component Part\"],\"I2bj4j\":[\"Testable Part\"],\"SH3bOE\":[\"Trackable Part\"],\"f9RadV\":[\"Purchaseable Part\"],\"HqVuYd\":[\"Saleable Part\"],\"PF44mc\":[\"Virtual Part\"],\"FNcMGM\":[\"Creation Date\"],\"egTba/\":[\"Created By\"],\"WpC0X0\":[\"Default Supplier\"],\"YA4hwj\":[\"Price Range\"],\"fL8nU5\":[\"Latest Serial Number\"],\"TF+TDw\":[\"Stocktake By\"],\"SDRhYQ\":[\"Variants\"],\"KwhnxF\":[\"Allocations\"],\"/637F4\":[\"Bill of Materials\"],\"5M5Kdm\":[\"Used In\"],\"//6AgL\":[\"Part Pricing\"],\"DbZMYM\":[\"Scheduling\"],\"eeXE8u\":[\"Test Templates\"],\"AAoGm5\":[\"Related Parts\"],\"csDS2L\":[\"Available\"],\"TMLAx2\":[\"Required\"],\"enG3o5\":[\"Edit Part\"],\"rGfVOS\":[\"Add Part\"],\"KTZNtu\":[\"Delete Part\"],\"DbBU6z\":[\"Deleting this part cannot be reversed\"],\"bbA1t1\":[\"Stock Actions\"],\"4Qpffa\":[\"Count part stock\"],\"tnr8CD\":[\"Transfer part stock\"],\"UYUgdb\":[\"Order\"],\"cUzrZK\":[\"Order Stock\"],\"loB51L\":[\"Part Actions\"],\"NYlllY\":[\"Select Part Revision\"],\"NUrY9o\":[\"Categories\"],\"YxrIF+\":[\"No pricing data found for this part.\"],\"mnyfvF\":[\"Pricing Overview\"],\"HOEiBc\":[\"Purchase History\"],\"ZAcg+u\":[\"Internal Pricing\"],\"ZHKujT\":[\"BOM Pricing\"],\"MIl406\":[\"Variant Pricing\"],\"uZut4M\":[\"Sale Pricing\"],\"pS6SBr\":[\"Sale History\"],\"mOFgdC\":[\"Maximum\"],\"4ba0NE\":[\"Scheduled\"],\"CW11B+\":[\"Minimum\"],\"Bu20qE\":[\"Quantity is speculative\"],\"WYBKsz\":[\"No date available for provided quantity\"],\"9AeDTN\":[\"Date is in the past\"],\"igZjpf\":[\"Scheduled Quantity\"],\"INI7x0\":[\"No information available\"],\"IBG+Hj\":[\"There is no scheduling information available for the selected part\"],\"6fzEyj\":[\"Expected Quantity\"],\"4bzVSe\":[\"Edit Stocktake Entry\"],\"SyjNrV\":[\"Delete Stocktake Entry\"],\"A6QWA5\":[\"Generate Stocktake Report\"],\"s3ikt8\":[\"Stocktake report scheduled\"],\"g9RfVq\":[\"Stock Value\"],\"zPIKqz\":[\"New Stocktake Report\"],\"xAbT4o\":[\"Minimum Value\"],\"0gIKWP\":[\"Maximum Value\"],\"KyZVKD\":[\"Total Price\"],\"dK3Z9j\":[\"Component\"],\"G+Ulzz\":[\"Minimum Total Price\"],\"QYcUEf\":[\"Minimum Price\"],\"rW4Gfm\":[\"Maximum Price\"],\"EbPCPS\":[\"Maximum Total Price\"],\"vWelsN\":[\"Unit Price\"],\"+b7T3G\":[\"Updated\"],\"3ubdv5\":[\"Pie Chart\"],\"LiFJll\":[\"Bar Chart\"],\"SXdWxL\":[\"Add Price Break\"],\"l3gpbq\":[\"Edit Price Break\"],\"ynVh1t\":[\"Delete Price Break\"],\"KOkNlr\":[\"Price Break\"],\"a7u1N9\":[\"Price\"],\"aR8akj\":[\"Refreshing pricing data\"],\"hpQNRe\":[\"Pricing data updated\"],\"3bajOU\":[\"Failed to update pricing data\"],\"VEz9J8\":[\"Edit Pricing\"],\"+iQdL9\":[\"Pricing Category\"],\"vzRtGZ\":[\"Override Pricing\"],\"mD5epu\":[\"Overall Pricing\"],\"KOSX82\":[\"Purchase Pricing\"],\"K7P0jz\":[\"Last Updated\"],\"5qxm+i\":[\"Pricing Not Set\"],\"xm2zEt\":[\"Pricing data has not been calculated for this part\"],\"YBZC5h\":[\"Pricing Actions\"],\"lCF0wC\":[\"Refresh\"],\"Y8w77c\":[\"Refresh pricing data\"],\"A0nfcs\":[\"Edit pricing data\"],\"tMFDem\":[\"No data available\"],\"B6C0XJ\":[\"No Data\"],\"HzrBHA\":[\"No pricing data available\"],\"p5/e49\":[\"Loading pricing data\"],\"zjncvE\":[\"Purchase Price\"],\"VZWsKS\":[\"Sale Order\"],\"FW5e+C\":[\"Sale Price\"],\"kk1/TT\":[\"Supplier Price\"],\"Tootjq\":[\"Variant Part\"],\"lAF9Uk\":[\"Edit Purchase Order\"],\"XRoR1U\":[\"Add Purchase Order\"],\"K7PVg3\":[\"Supplier Reference\"],\"9j2hXW\":[\"Order Currency,\"],\"qgs95u\":[\"Completed Line Items\"],\"Enslfm\":[\"Destination\"],\"0UZTSq\":[\"Order Currency\"],\"A6C0pv\":[\"Total Cost\"],\"x9P/+F\":[\"Created On\"],\"41BQ3k\":[\"Contact Email\"],\"P1x5uo\":[\"Contact Phone\"],\"M1cChr\":[\"Issue Date\"],\"41ha49\":[\"Completion Date\"],\"Tol4BF\":[\"Order Details\"],\"l11DG/\":[\"Extra Line Items\"],\"keApR9\":[\"Issue Purchase Order\"],\"98xQHK\":[\"Cancel Purchase Order\"],\"vJaCK0\":[\"Hold Purchase Order\"],\"CWbcdO\":[\"Complete Purchase Order\"],\"/IKytX\":[\"Order Actions\"],\"ZVUe1A\":[\"Customer Reference\"],\"INmUKx\":[\"Order canceled\"],\"RDcVR0\":[\"Edit Return Order\"],\"mpNlR/\":[\"Add Return Order\"],\"LUGEsQ\":[\"Issue Return Order\"],\"qOAlIV\":[\"Cancel Return Order\"],\"Sd+hNf\":[\"Hold Return Order\"],\"yDIX54\":[\"Complete Return Order\"],\"polrQd\":[\"Completed Shipments\"],\"qC/FEC\":[\"Pending Shipments\"],\"nEK4wx\":[\"Edit Sales Order\"],\"VzdnWM\":[\"Add Sales Order\"],\"aljM0q\":[\"Shipments\"],\"Zk75Wf\":[\"Issue Sales Order\"],\"GYdhXE\":[\"Cancel Sales Order\"],\"Pgi6wT\":[\"Hold Sales Order\"],\"tMUAZW\":[\"Ship Sales Order\"],\"huukBM\":[\"Ship this order?\"],\"NloAZ8\":[\"Order shipped\"],\"O1h5Uc\":[\"Complete Sales Order\"],\"7I7mfp\":[\"Ship Order\"],\"Dwgrby\":[\"Shipment Reference\"],\"sdy17V\":[\"Allocated Items\"],\"DTku8S\":[\"Tracking Number\"],\"MhyecB\":[\"Invoice Number\"],\"MFQxyA\":[\"Shipment Date\"],\"ovm9ir\":[\"Delivery Date\"],\"aaEiwW\":[\"Shipment Details\"],\"9dk0UT\":[\"Assigned Items\"],\"rX/5YH\":[\"Edit Shipment\"],\"YAsuZ2\":[\"Cancel Shipment\"],\"/IxVda\":[\"Complete Shipment\"],\"UbRKMZ\":[\"Pending\"],\"AoOqHM\":[\"Shipped\"],\"BTOhSm\":[\"Delivered\"],\"1mYYQ6\":[\"Send Shipment\"],\"8ijAtN\":[\"Shipment Actions\"],\"+o9hiJ\":[\"Parent Location\"],\"L7/8CO\":[\"Sublocations\"],\"bVhrVt\":[\"External\"],\"4sg5Qp\":[\"Location Type\"],\"js9HzF\":[\"Top level stock location\"],\"AC8C/Z\":[\"Location Details\"],\"D19W4x\":[\"Default Parts\"],\"Qdjbg8\":[\"Edit Stock Location\"],\"+oqXDN\":[\"Move items to parent location\"],\"lnETLa\":[\"Delete Stock Location\"],\"j3pJx8\":[\"Items Action\"],\"Ml7+Iv\":[\"Action for stock items in this location\"],\"+DlcAh\":[\"Child Locations Action\"],\"CEDjmR\":[\"Action for child locations in this location\"],\"Ego4rz\":[\"Location Actions\"],\"mY+KgP\":[\"Base Part\"],\"JfqbtZ\":[\"Link custom barcode to stock item\"],\"Yo+Era\":[\"Completed Tests\"],\"MrzVmw\":[\"Unlink custom barcode from stock item\"],\"whZ7zT\":[\"Last Stocktake\"],\"8oSGoC\":[\"Allocated to Orders\"],\"RF496L\":[\"Edit stock item\"],\"227gwk\":[\"Delete stock item\"],\"QPoAhl\":[\"Installed In\"],\"0o0T0n\":[\"Parent Item\"],\"94QKKW\":[\"Parent stock item\"],\"H00rnl\":[\"Consumed By\"],\"KD3GYK\":[\"Duplicate stock item\"],\"hBG+yp\":[\"Stock Details\"],\"IdrYoA\":[\"Stock Tracking\"],\"dljGeD\":[\"Test Data\"],\"xnskHi\":[\"Installed Items\"],\"K4v96J\":[\"Child Items\"],\"gQgYNs\":[\"Edit Stock Item\"],\"BJoa27\":[\"Delete Stock Item\"],\"ETKLHa\":[\"Serialize Stock Item\"],\"Hkw/xj\":[\"Stock item serialized\"],\"FY3xEt\":[\"Return Stock Item\"],\"xRHE+Q\":[\"Return this item into stock. This will remove the customer assignment.\"],\"M6A9fW\":[\"Item returned to stock\"],\"vq/m8u\":[\"Add stock\"],\"qpe+W0\":[\"Remove stock\"],\"+OxnAC\":[\"Transfer stock\"],\"ClJC3x\":[\"Stock Operations\"],\"rb0Klh\":[\"Count stock\"],\"zPGNJm\":[\"Transfer\"],\"Wlr+mY\":[\"Serialize\"],\"Vmnyam\":[\"Serialize stock\"],\"vUOn9d\":[\"Return\"],\"CwkTmH\":[\"Return from customer\"],\"7J5Eno\":[\"Assign to Customer\"],\"Ch8pZV\":[\"Assign to a customer\"],\"oPF3fX\":[\"Stock Item Actions\"],\"1ba70W\":[\"Stale\"],\"M1RnFv\":[\"Expired\"],\"jqzUyM\":[\"Unavailable\"],\"Bjsayx\":[\"Error loading icon package from server\"],\"TgUP31\":[\"Część nie jest aktywna\"],\"Fe2KEj\":[\"Part is locked\"],\"6z/VRr\":[\"Part is Locked\"],\"uB1bw/\":[\"You are subscribed to notifications for this part\"],\"47h3Cb\":[\"No location set\"],\"kCTFU8\":[\"Select Columns\"],\"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\":[\"Assigned to me\"],\"BnF3ID\":[\"Show orders assigned to me\"],\"aimnwe\":[\"Outstanding\"],\"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\":[\"Has Project Code\"],\"gW+vYR\":[\"Show orders with an assigned project code\"],\"OIH7WF\":[\"Filter by order status\"],\"8sHFLc\":[\"Filter by project code\"],\"OVVPn5\":[\"Filter by responsible owner\"],\"FVjW63\":[\"Filter by user\"],\"cX/tzW\":[\"Filter by user who created the order\"],\"QFznVK\":[\"Filter by user who issued the order\"],\"/zwgG7\":[\"Filter by part category\"],\"rn2/2V\":[\"Remove filter\"],\"Fo55lj\":[\"Select filter value\"],\"Q//Mlp\":[\"Enter filter value\"],\"A63fc7\":[\"Select date value\"],\"hpMOSe\":[\"Select filter\"],\"o7J4JM\":[\"Filter\"],\"l34cnu\":[\"Table Filters\"],\"PzFzS+\":[\"Add Filter\"],\"J8ECgX\":[\"Clear Filters\"],\"EqGTpW\":[\"No records found\"],\"H7mqmH\":[\"Failed to load table options\"],\"3o3AAs\":[\"Server returned incorrect data type\"],\"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\":[\"Delete Selected Items\"],\"3kYcuM\":[\"Are you sure you want to delete the selected items?\"],\"U99rVM\":[\"This action cannot be undone\"],\"B7s1hd\":[\"Items deleted\"],\"NO2Qmx\":[\"Failed to delete items\"],\"VUTcDq\":[\"Custom table filters are active\"],\"QZQ+5V\":[\"Delete selected records\"],\"8RYNR1\":[\"Refresh data\"],\"o3Zq/u\":[\"item-\",[\"idx\"]],\"UzBu4e\":[\"Upload Data\"],\"tCdfmU\":[\"This BOM item is defined for a different parent\"],\"vVRudK\":[\"Part Information\"],\"e8fwfT\":[\"External stock\"],\"XTe+lK\":[\"Includes substitute stock\"],\"LdvJ9e\":[\"Includes variant stock\"],\"oZd08v\":[\"Building\"],\"odasNw\":[\"Stock Information\"],\"f/GbFw\":[\"Consumable item\"],\"9QNy8U\":[\"No available stock\"],\"UWjHm9\":[\"Create BOM Item\"],\"1LYhEA\":[\"Show asssmbled items\"],\"LCdyP7\":[\"Show testable items\"],\"GnQW79\":[\"Show trackable items\"],\"yTd5+B\":[\"Show assembled items\"],\"Dg4tQl\":[\"Show items with available stock\"],\"xfq4ym\":[\"Show items on order\"],\"RqNith\":[\"Edit Bom Item\"],\"AT7M/M\":[\"Bom item updated\"],\"GuXjc5\":[\"Validated\"],\"37tHwV\":[\"Show validated items\"],\"0sZpQb\":[\"Inherited\"],\"/8VvXe\":[\"Show inherited items\"],\"dnCTyJ\":[\"Allow Variants\"],\"IApw+H\":[\"Show items which allow variant substitution\"],\"1kk0o3\":[\"Delete Bom Item\"],\"ZrT5g0\":[\"Bom item deleted\"],\"LLAa/9\":[\"Optional\"],\"XHqrSv\":[\"Show optional items\"],\"+d9ARc\":[\"Are you sure you want to remove this BOM item?\"],\"tlXhbF\":[\"Validate BOM line\"],\"duCsZf\":[\"Consumable\"],\"66RvWY\":[\"Show consumable items\"],\"T43R5B\":[\"Has Pricing\"],\"Aszrkt\":[\"Show items with pricing\"],\"RdqEWx\":[\"Import BOM Data\"],\"vkMikt\":[\"Add BOM Item\"],\"YElEbg\":[\"BOM item created\"],\"GfL3+x\":[\"Edit BOM Item\"],\"wykrCX\":[\"BOM item updated\"],\"XXHHcQ\":[\"Delete BOM Item\"],\"3o7Mfj\":[\"BOM item deleted\"],\"vIkXF4\":[\"Validate BOM\"],\"mYOpu8\":[\"Do you want to validate the bill of materials for this assembly?\"],\"RLCXzl\":[\"BOM validated\"],\"i/1z0K\":[\"BOM item validated\"],\"TQS5oB\":[\"Failed to validate BOM item\"],\"aDkF9z\":[\"View BOM\"],\"rkutMO\":[\"Validate BOM Line\"],\"Omvn40\":[\"Edit Substitutes\"],\"QQGDQY\":[\"Bill of materials cannot be edited, as the part is locked\"],\"WL36Yh\":[\"Assembly\"],\"v3oiP1\":[\"Show active assemblies\"],\"y6MnU0\":[\"Trackable\"],\"pvl7N9\":[\"Show trackable assemblies\"],\"ML+087\":[\"Allocated to Output\"],\"mVVw+/\":[\"Show items allocated to a build output\"],\"/g9i/Z\":[\"Include Variants\"],\"NkXwQy\":[\"Include orders for part variants\"],\"acIJ41\":[\"Order Status\"],\"Tk6w1l\":[\"Allocated Quantity\"],\"I8CEek\":[\"Available Quantity\"],\"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\":[\"Show allocated lines\"],\"4xoOP+\":[\"Show consumable lines\"],\"JZ0XU+\":[\"Show optional lines\"],\"bJsTOf\":[\"Testable\"],\"EaG6cP\":[\"Tracked\"],\"lY29Qz\":[\"Show tracked lines\"],\"G1xXyB\":[\"In production\"],\"R7+e2m\":[\"Insufficient stock\"],\"a5n/wL\":[\"No stock available\"],\"UF/nv9\":[\"Gets Inherited\"],\"O7oMsT\":[\"Unit Quantity\"],\"D91mkk\":[\"Required Quantity\"],\"UcPKar\":[\"Create Build Order\"],\"xYIlpM\":[\"Auto allocation in progress\"],\"PjEJ0F\":[\"Auto Allocate Stock\"],\"E2byp7\":[\"Automatically allocate stock to this build according to the selected options\"],\"ZZL0Jx\":[\"Deallocate Stock\"],\"9dNtWo\":[\"Deallocate all untracked stock for this build order\"],\"L01aET\":[\"Deallocate stock from the selected line item\"],\"er7tfw\":[\"Stock has been deallocated\"],\"vgTd7I\":[\"Build Stock\"],\"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\":[\"Add Test Result\"],\"VivtT0\":[\"Test result added\"],\"4bobEy\":[\"No Result\"],\"AO8gAN\":[\"Show build outputs currently in production\"],\"XqhL5S\":[\"Build Output Stock Allocation\"],\"ACftxI\":[\"Delete build output\"],\"jgrPxc\":[\"Add Build Output\"],\"KutyZ/\":[\"Edit build output\"],\"yP367G\":[\"Edit Build Output\"],\"1s7aZ2\":[\"This action will deallocate all stock from the selected build output\"],\"jNuqfk\":[\"Complete selected outputs\"],\"ps+JBt\":[\"Scrap selected outputs\"],\"MXiIO4\":[\"Cancel selected outputs\"],\"MeORpZ\":[\"View Build Output\"],\"9X8lAk\":[\"Allocate\"],\"kHgU4C\":[\"Allocate stock to build output\"],\"kp5oT9\":[\"Deallocate\"],\"NLp8ve\":[\"Deallocate stock from build output\"],\"BdMeIY\":[\"Complete build output\"],\"5mspUE\":[\"Scrap\"],\"oise/z\":[\"Scrap build output\"],\"ewDpt2\":[\"Cancel build output\"],\"/b62hy\":[\"Allocated Lines\"],\"E4lFEY\":[\"Required Tests\"],\"W0pjLr\":[\"Add Address\"],\"N0ZOat\":[\"Address created\"],\"xLQ0lF\":[\"Edit Address\"],\"xiRN5x\":[\"Delete Address\"],\"F1bgq9\":[\"Are you sure you want to delete this address?\"],\"TsXckK\":[\"New Company\"],\"5blzdE\":[\"Add Company\"],\"KbHNaM\":[\"Show active companies\"],\"ZFG/Lo\":[\"Show companies which are suppliers\"],\"G/eOzG\":[\"Show companies which are manufacturers\"],\"7h6Dth\":[\"Show companies which are customers\"],\"mQpWAe\":[\"Edit Contact\"],\"M0FgOk\":[\"Add Contact\"],\"0oMKRL\":[\"Delete Contact\"],\"QsNWTM\":[\"Add contact\"],\"Y4Mpdd\":[\"Show active users\"],\"wrd7Ba\":[\"Show staff users\"],\"e1FtjW\":[\"Show superusers\"],\"XDpUYO\":[\"Uploading file \",[\"filename\"]],\"FJqE4H\":[\"File uploaded\"],\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"hIFN6r\":[\"Uploading File\"],\"I1EiW4\":[\"File Uploaded\"],\"JuMBMK\":[\"File \",[\"name\"],\" uploaded successfully\"],\"GZnmeE\":[\"File could not be uploaded\"],\"p1w/D6\":[\"Upload Attachment\"],\"VHmXZm\":[\"Upload attachment\"],\"MVvhJ1\":[\"Edit Attachment\"],\"hZfPb3\":[\"Delete Attachment\"],\"3QegpG\":[\"Is Link\"],\"r1FQZj\":[\"Show link attachments\"],\"JT83gz\":[\"Is File\"],\"5LI39K\":[\"Show file attachments\"],\"V8euYO\":[\"Add attachment\"],\"DpV4ac\":[\"Add external link\"],\"32o8IC\":[\"No attachments found\"],\"1cbxaa\":[\"Drag attachment file here to upload\"],\"HX5SVx\":[\"Komponent\"],\"scu3wk\":[\"Model\"],\"8TMaZI\":[\"Timestamp\"],\"Go4fl6\":[\"View Item\"],\"pwb7Yo\":[\"Add Line Item\"],\"vgosWS\":[\"Edit Line Item\"],\"tpKh8C\":[\"Delete Line Item\"],\"xnxWkO\":[\"Add Extra Line Item\"],\"8hvWaA\":[\"Machine restarted\"],\"RBquff\":[\"Edit machine\"],\"5ihjEH\":[\"Delete machine\"],\"ZbXCol\":[\"Machine successfully deleted.\"],\"Y9eJUJ\":[\"Are you sure you want to remove the machine \\\"\",[\"0\"],\"\\\"?\"],\"HCk1Xx\":[\"Machine\"],\"dKwnjv\":[\"Restart required\"],\"72f9dQ\":[\"Machine Actions\"],\"6z9W13\":[\"Restart\"],\"Plnldt\":[\"Restart machine\"],\"kbLjlB\":[\"manual restart required\"],\"TXZA6i\":[\"Machine information\"],\"gz3Ont\":[\"Machine Information\"],\"pwL+bm\":[\"Machine Type\"],\"3ADt1I\":[\"Machine Driver\"],\"nsu9Un\":[\"Initialized\"],\"hIOaIF\":[\"No errors reported\"],\"m57e2B\":[\"Machine Settings\"],\"fWJCep\":[\"Driver Settings\"],\"2Whws6\":[\"Create machine\"],\"V0xlx2\":[\"Add Machine\"],\"kZ/tbb\":[\"Add machine\"],\"dGaozN\":[\"Machine detail\"],\"YDOU4Q\":[\"Machine Detail\"],\"6ccUsd\":[\"Driver\"],\"argeGI\":[\"Builtin driver\"],\"pAtylB\":[\"Not Found\"],\"IBrg3Y\":[\"Machine type information\"],\"FW2Ygg\":[\"Machine type not found.\"],\"RRr8s4\":[\"Machine Type Information\"],\"L85WcV\":[\"Slug\"],\"umAemZ\":[\"Provider plugin\"],\"jfVQG5\":[\"Provider file\"],\"7wk8VI\":[\"Available drivers\"],\"qTGFbM\":[\"Available Drivers\"],\"p6inm0\":[\"Machine driver not found.\"],\"Dm7Jy5\":[\"Machine driver information\"],\"I+nMNp\":[\"Machine type\"],\"9Lc7+e\":[\"Machine type detail\"],\"VDbgpF\":[\"Machine driver detail\"],\"eBtH/D\":[\"Builtin type\"],\"qRwuAd\":[\"Machine Type Detail\"],\"RYeia3\":[\"Machine Driver Detail\"],\"RCU5PY\":[\"Age\"],\"5+87Pq\":[\"Powiadomienie\"],\"xDAtGP\":[\"Message\"],\"cwMTjO\":[\"Click to edit\"],\"T4+0qy\":[\"Edit parameter\"],\"iwRvX8\":[\"Add Part Parameter\"],\"ZqLOh/\":[\"Edit Part Parameter\"],\"xqUGVc\":[\"Show active parts\"],\"tB/dWJ\":[\"Show locked parts\"],\"IxF0Eq\":[\"Show assembly parts\"],\"XVdICT\":[\"Required Stock\"],\"bjYQWK\":[\"View Build Order\"],\"mUyvRx\":[\"You are subscribed to notifications for this category\"],\"NgZniC\":[\"Include Subcategories\"],\"Tt3/Pp\":[\"Include subcategories in results\"],\"kHkg2b\":[\"Show structural categories\"],\"mcDc03\":[\"Show categories to which the user is subscribed\"],\"sIMwJx\":[\"New Part Category\"],\"H52WlQ\":[\"Set Parent Category\"],\"OORNPU\":[\"Set Parent\"],\"rB20aK\":[\"Set parent category for the selected items\"],\"5LuNgu\":[\"Add Part Category\"],\"+BLSbg\":[\"Add Category Parameter\"],\"kF/O0U\":[\"Edit Category Parameter\"],\"O5duuA\":[\"Delete Category Parameter\"],\"+nwoLk\":[\"Parameter Template\"],\"jzZjwa\":[\"[\",[\"0\"],\"]\"],\"Y0ne3N\":[\"Internal Units\"],\"CzIiuH\":[\"New Part Parameter\"],\"uuJqm+\":[\"Delete Part Parameter\"],\"2tuwGz\":[\"Add parameter\"],\"w6BdSL\":[\"Part parameters cannot be edited, as the part is locked\"],\"G1XxbZ\":[\"Checkbox\"],\"jaUfxb\":[\"Show checkbox templates\"],\"dBda4v\":[\"Has choices\"],\"f1PxeH\":[\"Show templates with choices\"],\"YyRdJQ\":[\"Has Units\"],\"jJ6ck0\":[\"Show templates with units\"],\"+ueC+W\":[\"Add Parameter Template\"],\"TEThbN\":[\"Edit Parameter Template\"],\"BXI6AQ\":[\"Delete Parameter Template\"],\"leKSr/\":[\"Add parameter template\"],\"GbI1d2\":[\"Total Quantity\"],\"+iVElN\":[\"Show pending orders\"],\"zKLEr5\":[\"Show received items\"],\"iV6RGP\":[\"View Sales Order\"],\"Lgnuy/\":[\"Minimum stock\"],\"PHri/6\":[\"Filter by part active status\"],\"j5DYyt\":[\"Filter by part locked status\"],\"oQzKsK\":[\"Filter by assembly attribute\"],\"5JhtGd\":[\"Include parts in subcategories\"],\"oO7QIX\":[\"Filter by component attribute\"],\"n8MVvQ\":[\"Filter by testable attribute\"],\"MbixSq\":[\"Filter by trackable attribute\"],\"WyFVby\":[\"Filter by parts which have units\"],\"c9/Fqb\":[\"Has IPN\"],\"jh/Aa+\":[\"Filter by parts which have an internal part number\"],\"JqmfuT\":[\"Has Stock\"],\"6Kd+HK\":[\"Filter by parts which have stock\"],\"GDYPCw\":[\"Filter by parts which have low stock\"],\"TW9g28\":[\"Purchaseable\"],\"KMdl2R\":[\"Filter by parts which are purchaseable\"],\"/3xNJ4\":[\"Salable\"],\"V5i7hf\":[\"Filter by parts which are salable\"],\"ksX7Wx\":[\"Wirtualny\"],\"QDTpY6\":[\"Filter by parts which are virtual\"],\"+SkaI8\":[\"Not Virtual\"],\"62zyX+\":[\"Is Template\"],\"utmCBg\":[\"Filter by parts which are templates\"],\"t/zat7\":[\"Is Variant\"],\"7xsBld\":[\"Filter by parts which are variants\"],\"wV5kLq\":[\"Is Revision\"],\"bvyXYp\":[\"Filter by parts which are revisions\"],\"uN6v7B\":[\"Has Revisions\"],\"mWe3zs\":[\"Filter by parts which have revisions\"],\"/t4j0O\":[\"Filter by parts which have pricing information\"],\"NINff3\":[\"Filter by parts which have available stock\"],\"PNFIYy\":[\"Filter by parts to which the user is subscribed\"],\"gzYEcU\":[\"Has Stocktake\"],\"u1pAkC\":[\"Filter by parts which have stocktake information\"],\"JSqPHE\":[\"Set Category\"],\"AVPs2p\":[\"Set category for selected parts\"],\"RBzQBd\":[\"Order selected parts\"],\"z/2etd\":[\"Test is defined for a parent template part\"],\"E9RwYl\":[\"Template Details\"],\"kx0s+n\":[\"Results\"],\"pgdOa+\":[\"Show required tests\"],\"E4Q3+2\":[\"Show enabled tests\"],\"ngtadB\":[\"Requires Value\"],\"loHk6k\":[\"Show tests that require a value\"],\"Mw88Xv\":[\"Requires Attachment\"],\"ufV8ON\":[\"Show tests that require an attachment\"],\"R9N/8P\":[\"Include Inherited\"],\"e6bd4c\":[\"Show tests from inherited templates\"],\"6pnRgI\":[\"Has Results\"],\"+ZdPFq\":[\"Show tests which have recorded results\"],\"c+EQoO\":[\"Add Test Template\"],\"2aEufW\":[\"Edit Test Template\"],\"ol4QKg\":[\"Delete Test Template\"],\"jIZttH\":[\"This action cannot be reversed\"],\"E87VhQ\":[\"Any tests results associated with this template will be deleted\"],\"vAhLlw\":[\"View Parent Part\"],\"B7Vy/0\":[\"Part templates cannot be edited, as the part is locked\"],\"rG3WVm\":[\"Select\"],\"rvLCOc\":[\"Show active variants\"],\"/K2CvV\":[\"Template\"],\"GdgCV2\":[\"Show template variants\"],\"83ib20\":[\"Show virtual variants\"],\"7VJ4Si\":[\"Show trackable variants\"],\"K0+pq1\":[\"Add Related Part\"],\"xG+5dj\":[\"Add related part\"],\"/kFxhJ\":[\"Delete Related Part\"],\"EI0Ac7\":[\"Edit Related Part\"],\"HCpwcG\":[\"Add Selection List\"],\"n7tNkj\":[\"Edit Selection List\"],\"fo+0WX\":[\"Delete Selection List\"],\"3PRxO3\":[\"Stage\"],\"QqLLp2\":[\"Plugin is active\"],\"s99Mc1\":[\"Plugin is inactive\"],\"LtEW/l\":[\"Plugin is not installed\"],\"fOuPPd\":[\"Plugin\"],\"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\":[\"Description not available\"],\"t4Dg7a\":[\"Plugin information\"],\"etUvlY\":[\"Plugin Actions\"],\"CL5Gfb\":[\"Edit plugin\"],\"fLe7w+\":[\"Confirm plugin activation\"],\"HpK/8d\":[\"Reload\"],\"oBCe/M\":[\"Confirm plugin deactivation\"],\"th4roR\":[\"The selected plugin will be activated\"],\"WPCUXx\":[\"The selected plugin will be deactivated\"],\"sxxj4o\":[\"Package information\"],\"5y3O+A\":[\"Deactivate\"],\"FQBaXG\":[\"Activate\"],\"RqdYGI\":[\"Activate selected plugin\"],\"xWsR91\":[\"Plugin settings\"],\"R7mVjI\":[\"Update selected plugin\"],\"fo0VXg\":[\"Uninstall\"],\"ll8AEP\":[\"Uninstall selected plugin\"],\"yX/BXa\":[\"Delete selected plugin configuration\"],\"2RHgaV\":[\"Activate Plugin\"],\"VAuM5b\":[\"The plugin was activated\"],\"ysKQPq\":[\"The plugin was deactivated\"],\"R7k68Z\":[\"Install plugin\"],\"TKQ7K+\":[\"Install\"],\"MiYlP5\":[\"Plugin installed successfully\"],\"mXzRzO\":[\"Uninstall Plugin\"],\"2xOCJW\":[\"This action cannot be undone.\"],\"6onEou\":[\"Confirm plugin uninstall\"],\"nh4MTY\":[\"The selected plugin will be uninstalled.\"],\"MAZU/W\":[\"Plugin uninstalled successfully\"],\"nud26y\":[\"Delete Plugin\"],\"vb5uIh\":[\"Deleting this plugin configuration will remove all associated settings and data. Are you sure you want to delete this plugin?\"],\"KyWCx1\":[\"Deactivate Plugin\"],\"Bs76+T\":[\"Plugins reloaded\"],\"js1VzJ\":[\"Plugins were reloaded successfully\"],\"LZ82cI\":[\"The following plugin will be activated\"],\"DSZP3u\":[\"The following plugin will be deactivated\"],\"2VWTDu\":[\"Reload Plugins\"],\"0O/OZv\":[\"Install Plugin\"],\"zKwhqX\":[\"Activating plugin\"],\"31OZWt\":[\"Deactivating plugin\"],\"NCjc4L\":[\"Plugin Detail\"],\"lOONZM\":[\"Plugin updated\"],\"ycupYY\":[\"Error updating plugin\"],\"LcJmOR\":[\"Sample\"],\"eQkgKV\":[\"Installed\"],\"jgl9ip\":[\"Plugin detail\"],\"WrK5aa\":[\"Add Parameter\"],\"SaV/l6\":[\"Parameter updated\"],\"FDjidN\":[\"Edit Parameter\"],\"YAbfek\":[\"Parameter deleted\"],\"0Agsuf\":[\"Are you sure you want to delete this parameter?\"],\"qSo+g1\":[\"Delete Parameter\"],\"DTNpCW\":[\"Create Manufacturer Part\"],\"zVjqeS\":[\"Manufacturer part updated\"],\"E1B18F\":[\"Manufacturer part deleted\"],\"Gk8NFj\":[\"Are you sure you want to remove this manufacturer part?\"],\"yWWRAr\":[\"Import Line Items\"],\"PeuqsI\":[\"Supplier Code\"],\"h3/Rpt\":[\"Supplier Link\"],\"u7qly3\":[\"Manufacturer Code\"],\"8Dmqxr\":[\"Show line items which have been received\"],\"ul9IpB\":[\"Receive line item\"],\"2vqtLo\":[\"Add line item\"],\"gyK1dv\":[\"Receive items\"],\"TOxiOu\":[\"MPN\"],\"v9F5VO\":[\"Base units\"],\"PsAftp\":[\"Add supplier part\"],\"mwOWRa\":[\"Supplier part updated\"],\"fPFpxB\":[\"Show active supplier parts\"],\"9RQlSP\":[\"Active Part\"],\"AS2E8V\":[\"Show active internal parts\"],\"2OQxz2\":[\"Active Supplier\"],\"T+mlMU\":[\"Show active suppliers\"],\"3GcBv9\":[\"Supplier part deleted\"],\"YGIkv1\":[\"Are you sure you want to remove this supplier part?\"],\"u22Ntx\":[\"Show supplier parts with stock\"],\"J18WDZ\":[\"Received Date\"],\"qVsPia\":[\"Show items which have been received\"],\"vQY+8t\":[\"Filter by line item status\"],\"ORa4sV\":[\"Receive selected items\"],\"7cTlo3\":[\"Receive Item\"],\"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\":[\"Allocate Serial Numbers\"],\"/x4Ue4\":[\"Allocate stock\"],\"xIkS3e\":[\"Allocate Serials\"],\"Rk+ZGQ\":[\"Show lines which are fully allocated\"],\"x7Nm8D\":[\"Show lines which are completed\"],\"EIkxpC\":[\"Allocate serials\"],\"NH34YB\":[\"Build stock\"],\"G4SnGh\":[\"Order stock\"],\"GicrKZ\":[\"Delete Shipment\"],\"qU3Y7+\":[\"Create Shipment\"],\"BzfzPK\":[\"Items\"],\"GtJdx7\":[\"View Shipment\"],\"MPjEsC\":[\"Edit shipment\"],\"whI1i/\":[\"Cancel shipment\"],\"77d67d\":[\"Add shipment\"],\"zxYkrg\":[\"Show shipments which have been shipped\"],\"DOexmc\":[\"Show shipments which have been delivered\"],\"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\":[\"Revoke\"],\"LQLPLZ\":[\"Error revoking token\"],\"VWjAuB\":[\"Tokens are only shown once - make sure to note it down.\"],\"HsJeTk\":[\"Barcode Information\"],\"FCKppt\":[\"Endpoint\"],\"RD6AE9\":[\"Result\"],\"M73whl\":[\"Context\"],\"ZlCDf+\":[\"Response\"],\"+Bt9q7\":[\"Filter by result\"],\"XBxqOY\":[\"Delete Barcode Scan Record\"],\"y1GSyz\":[\"Barcode Scan Details\"],\"d20v+o\":[\"Logging Disabled\"],\"y6SrPr\":[\"Barcode logging is not enabled\"],\"TGcVE+\":[\"Status Group\"],\"Iz1I4v\":[\"Logical State\"],\"sJGljQ\":[\"Identifier\"],\"9lGJPt\":[\"Add state\"],\"vTGxVN\":[\"Add State\"],\"/viGTM\":[\"Edit State\"],\"Yrs5A6\":[\"Delete State\"],\"W3xtIU\":[\"Add Custom Unit\"],\"MiLRVK\":[\"Edit Custom Unit\"],\"UbQkdF\":[\"Delete Custom Unit\"],\"VzcXtA\":[\"Add custom unit\"],\"Y9iMNt\":[\"Delete error report\"],\"g3fe3D\":[\"Traceback\"],\"1ZF9KQ\":[\"When\"],\"pao9M8\":[\"Error Information\"],\"LKUVto\":[\"Delete Error Report\"],\"crTsip\":[\"Are you sure you want to delete this error report?\"],\"lYkkju\":[\"Error report deleted\"],\"7Jw/XW\":[\"Error Details\"],\"Pfebun\":[\"Output Type\"],\"oJd0vd\":[\"Exported On\"],\"Q3P/4s\":[\"Task\"],\"YgxM31\":[\"Task ID\"],\"JEGlfK\":[\"Started\"],\"BCmibk\":[\"Attempts\"],\"6RoHXm\":[\"No Information\"],\"OFdRJT\":[\"No error details are available for this task\"],\"yO7e9w\":[\"Group with id \",[\"id\"],\" not found\"],\"rubZxD\":[\"An error occurred while fetching group details\"],\"B7dQAo\":[\"Permission set\"],\"k/RLDM\":[\"Delete group\"],\"qYB1E/\":[\"Group deleted\"],\"X8Qpil\":[\"Are you sure you want to delete this group?\"],\"bm8pgG\":[\"Add group\"],\"46SUtl\":[\"Edit group\"],\"HkPAKw\":[\"Delete Import Session\"],\"PlWSqy\":[\"Create Import Session\"],\"3wG7HI\":[\"Uploaded\"],\"pLosEx\":[\"Model Type\"],\"qrooIv\":[\"Filter by target model type\"],\"iv0viw\":[\"Filter by import session status\"],\"OgB1k4\":[\"Arguments\"],\"FhC+KB\":[\"Add Project Code\"],\"9+Sxmn\":[\"Edit Project Code\"],\"tGsebi\":[\"Delete Project Code\"],\"6K55qI\":[\"Add project code\"],\"QnJn75\":[\"Last Run\"],\"1C5cFl\":[\"Next Run\"],\"gjpdaf\":[\"Report\"],\"aCQiIS\":[\"Part Count\"],\"MlrelG\":[\"Delete Report\"],\"E98eQs\":[[\"templateTypeTranslation\"],\" with id \",[\"id\"],\" not found\"],\"Aj01Iz\":[\"An error occurred while fetching \",[\"templateTypeTranslation\"],\" details\"],\"xsi6kC\":[\"actions\"],\"p2sbyZ\":[\"Template not found\"],\"Wt1PP8\":[\"An error occurred while fetching template details\"],\"Hkobke\":[\"Add new\"],\"BOqY23\":[\"Create new\"],\"J1B1dP\":[\"Modify\"],\"aZ7tE3\":[\"Modify template file\"],\"FkQvI0\":[\"Edit Template\"],\"DFjdv0\":[\"Delete template\"],\"uQlQah\":[\"Add Template\"],\"LbIbgd\":[\"Add template\"],\"ZSdpBm\":[\"Filter by enabled status\"],\"M7/mjk\":[\"Report Output\"],\"z0pfhl\":[\"User with id \",[\"id\"],\" not found\"],\"h/t9U9\":[\"An error occurred while fetching user details\"],\"bhnh17\":[\"Is Active\"],\"xYgjoW\":[\"Designates whether this user should be treated as active. Unselect this instead of deleting accounts.\"],\"F5kfLm\":[\"Is Staff\"],\"paSmTV\":[\"Designates whether the user can log into the django admin site.\"],\"tIIrDc\":[\"Is Superuser\"],\"dNitd2\":[\"Designates that this user has all permissions without explicitly assigning them.\"],\"bDFcjC\":[\"You cannot edit the rights for the currently logged-in user.\"],\"n7RDzR\":[\"No groups\"],\"E33LRn\":[\"Delete user\"],\"Z1AUmg\":[\"User deleted\"],\"af4xhp\":[\"Are you sure you want to delete this user?\"],\"Ls08BH\":[\"Add User\"],\"e7XEqK\":[\"Added user\"],\"UbwSmF\":[\"Add user\"],\"poTr35\":[\"Edit user\"],\"erPDED\":[\"Install Item\"],\"g+zcGQ\":[\"Item installed\"],\"q2BZiX\":[\"Uninstall Item\"],\"ibtYlF\":[\"Item uninstalled\"],\"mGSvSz\":[\"Uninstall stock item\"],\"4C+o/K\":[\"Add Location Type\"],\"BN23Uj\":[\"Edit Location Type\"],\"G9WAYq\":[\"Delete Location Type\"],\"wwu18a\":[\"Icon\"],\"fh2Vf5\":[\"This stock item is in production\"],\"X1BIR/\":[\"This stock item has been assigned to a sales order\"],\"fHlvYo\":[\"This stock item has been assigned to a customer\"],\"bGwMIh\":[\"This stock item is installed in another stock item\"],\"Xig/cj\":[\"This stock item has been consumed by a build order\"],\"szsXHP\":[\"This stock item is unavailable\"],\"x/QIhZ\":[\"This stock item has expired\"],\"UtuqjX\":[\"This stock item is stale\"],\"L1D5PL\":[\"This stock item is fully allocated\"],\"PjVOCj\":[\"This stock item is partially allocated\"],\"ddPzUj\":[\"This stock item has been depleted\"],\"6OScNP\":[\"Stocktake Date\"],\"iG2HTd\":[\"Show stock for assmebled parts\"],\"UjHL/d\":[\"Show stock for active parts\"],\"+Jr1e4\":[\"Filter by stock status\"],\"3Ah+L7\":[\"Show stock for assembled parts\"],\"pxiNcZ\":[\"Show items which have been allocated\"],\"kbUAFH\":[\"Show items which are available\"],\"VY386J\":[\"Include Sublocations\"],\"fMbOmV\":[\"Include stock in sublocations\"],\"9/P0N3\":[\"Depleted\"],\"0n9TfP\":[\"Show depleted stock items\"],\"oXdFGe\":[\"Show items which are in stock\"],\"c64azd\":[\"Show items which are in production\"],\"n9gDGi\":[\"Include stock items for variant parts\"],\"XNITBt\":[\"Consumed\"],\"1yWWZV\":[\"Show items which have been consumed by a build order\"],\"GQ73kf\":[\"Show stock items which are installed in other items\"],\"XwjZor\":[\"Sent to Customer\"],\"LPuYfz\":[\"Show items which have been sent to a customer\"],\"SkCY/+\":[\"Is Serialized\"],\"S5yS1f\":[\"Show items which have a serial number\"],\"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\":[\"Has Batch Code\"],\"rc/Y1E\":[\"Show items which have a batch code\"],\"TRFyJq\":[\"Show tracked items\"],\"+MprDT\":[\"Has Purchase Price\"],\"tAFrkr\":[\"Show items which have a purchase price\"],\"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\":[\"External Location\"],\"ETtRZU\":[\"Show items in an external location\"],\"y5SdJc\":[\"Delete stock items\"],\"wiTIgC\":[\"Add a new stock item\"],\"vP4ilC\":[\"Remove some quantity from a stock item\"],\"lgwXs+\":[\"Move Stock items to new locations\"],\"E6cz5z\":[\"Change stock status\"],\"/gndGd\":[\"Change the status of stock items\"],\"3iu3Xl\":[\"Merge stock\"],\"V22osk\":[\"Merge stock items\"],\"iihIqf\":[\"Order new stock\"],\"chR2IB\":[\"Assign to customer\"],\"jETzQV\":[\"Assign items to a customer\"],\"6vqSiF\":[\"Delete stock\"],\"NnH3pK\":[\"Test\"],\"yd1WJ/\":[\"Test result for installed stock item\"],\"UY1vmE\":[\"Attachment\"],\"18Lf3c\":[\"Test station\"],\"4dQFvz\":[\"Finished\"],\"1HKt5e\":[\"Edit Test Result\"],\"G0v/SO\":[\"Test result updated\"],\"381PhV\":[\"Delete Test Result\"],\"xbuMqN\":[\"Test result deleted\"],\"uUlW4e\":[\"Test Passed\"],\"uiR3yF\":[\"Test result has been recorded\"],\"VjER3N\":[\"Failed to record test result\"],\"up/ozE\":[\"Pass Test\"],\"sKK8za\":[\"Show results for required tests\"],\"TD72EF\":[\"Include Installed\"],\"BYeSw1\":[\"Show results for installed stock items\"],\"nqMwPi\":[\"Passed\"],\"bcwRe2\":[\"Show only passed tests\"],\"+kMQXd\":[\"Show results for enabled tests\"],\"evmuf/\":[\"structural\"],\"Ue7Vtx\":[\"Include sublocations in results\"],\"FCS8de\":[\"external\"],\"zW8WBT\":[\"Show structural locations\"],\"ckSQBM\":[\"Show external locations\"],\"Sgyhpp\":[\"Has location type\"],\"buIdz6\":[\"Filter by location type\"],\"sklcDg\":[\"Add Stock Location\"],\"vqGtWs\":[\"Set Parent Location\"],\"dIzYVe\":[\"Set parent location for the selected items\"],\"hp8OtS\":[\"Added\"],\"eps54V\":[\"Removed\"],\"URmyfc\":[\"Details\"],\"L5d7xh\":[\"No user information\"],\"72c5Qo\":[\"Total\"],\"7Bj3x9\":[\"Failed\"],\"OWg6Ht\":[\"Mobile viewport detected\"],\"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\":[\"Read the docs\"],\"DGeA2E\":[\"Ignore and continue to Desktop view\"]}")as Messages;
|