@inventreedb/ui 0.0.1 → 0.0.3
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/CHANGELOG.md +15 -0
- package/LICENSE +21 -0
- package/README.md +18 -7
- package/dist/.vite/manifest.json +168 -0
- package/dist/_virtual/errors.js +5 -0
- package/dist/_virtual/errors.js.map +1 -0
- package/dist/_virtual/index.js +6 -0
- package/dist/_virtual/index.js.map +1 -0
- package/dist/_virtual/index2.js +5 -0
- package/dist/_virtual/index2.js.map +1 -0
- package/dist/_virtual/lexer.js +5 -0
- package/dist/_virtual/lexer.js.map +1 -0
- package/dist/_virtual/moo.js +5 -0
- package/dist/_virtual/moo.js.map +1 -0
- package/dist/_virtual/parser.js +6 -0
- package/dist/_virtual/parser.js.map +1 -0
- package/dist/_virtual/parser2.js +5 -0
- package/dist/_virtual/parser2.js.map +1 -0
- package/dist/enums/ApiEndpoints.d.ts +179 -0
- package/dist/enums/ApiEndpoints.js +184 -0
- package/dist/enums/ApiEndpoints.js.map +1 -0
- package/dist/enums/ModelInformation.d.ts +20 -0
- package/dist/enums/ModelInformation.js +590 -0
- package/dist/enums/ModelInformation.js.map +1 -0
- package/dist/enums/ModelType.d.ts +35 -0
- package/dist/enums/ModelType.js +40 -0
- package/dist/enums/ModelType.js.map +1 -0
- package/dist/enums/Roles.d.ts +18 -0
- package/dist/functions/Api.d.ts +11 -0
- package/dist/functions/Api.js +27 -0
- package/dist/functions/Api.js.map +1 -0
- package/dist/functions/Events.d.ts +1 -0
- package/dist/functions/Events.js +10 -0
- package/dist/functions/Events.js.map +1 -0
- package/dist/functions/Navigation.d.ts +8 -0
- package/dist/functions/Navigation.js +38 -0
- package/dist/functions/Navigation.js.map +1 -0
- package/dist/functions/Plugins.d.ts +2 -0
- package/dist/functions/Plugins.js +23 -0
- package/dist/functions/Plugins.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/node_modules/@lingui/core/dist/index.js +405 -0
- package/dist/node_modules/@lingui/core/dist/index.js.map +1 -0
- package/dist/node_modules/@lingui/message-utils/dist/compileMessage.js +326 -0
- package/dist/node_modules/@lingui/message-utils/dist/compileMessage.js.map +1 -0
- package/dist/node_modules/@messageformat/parser/lib/lexer.js +74 -0
- package/dist/node_modules/@messageformat/parser/lib/lexer.js.map +1 -0
- package/dist/node_modules/@messageformat/parser/lib/parser.js +223 -0
- package/dist/node_modules/@messageformat/parser/lib/parser.js.map +1 -0
- package/dist/node_modules/moo/moo.js +539 -0
- package/dist/node_modules/moo/moo.js.map +1 -0
- package/dist/node_modules/unraw/dist/errors.js +39 -0
- package/dist/node_modules/unraw/dist/errors.js.map +1 -0
- package/dist/node_modules/unraw/dist/index.js +112 -0
- package/dist/node_modules/unraw/dist/index.js.map +1 -0
- package/dist/types/Auth.d.ts +51 -0
- package/dist/types/Core.d.ts +10 -0
- package/dist/types/Filters.d.ts +56 -0
- package/dist/types/Forms.d.ts +159 -0
- package/dist/types/Icons.d.ts +5 -0
- package/dist/types/Modals.d.ts +15 -0
- package/dist/types/Plugins.d.ts +58 -0
- package/dist/types/Plugins.js +5 -0
- package/dist/types/Plugins.js.map +1 -0
- package/dist/types/Server.d.ts +7 -0
- package/dist/types/Settings.d.ts +48 -0
- package/dist/types/Tables.d.ts +34 -0
- package/dist/types/User.d.ts +55 -0
- package/{src/components/render/ModelType.tsx → lib/enums/ModelInformation.tsx} +4 -18
- package/lib/functions/Navigation.tsx +58 -0
- package/lib/index.ts +6 -0
- package/lib/types/Icons.tsx +9 -0
- package/package.json +9 -1
- package/.babelrc +0 -8
- package/.linguirc +0 -55
- package/index.html +0 -15
- package/netlify.toml +0 -22
- package/playwright/global-setup.ts +0 -45
- package/playwright.config.ts +0 -99
- package/src/App.tsx +0 -35
- package/src/assets/inventree.svg +0 -1
- package/src/components/Boundary.tsx +0 -43
- package/src/components/SplashScreen.tsx +0 -35
- package/src/components/barcodes/BarcodeCameraInput.tsx +0 -207
- package/src/components/barcodes/BarcodeInput.tsx +0 -127
- package/src/components/barcodes/BarcodeKeyboardInput.tsx +0 -50
- package/src/components/barcodes/BarcodeScanDialog.tsx +0 -101
- package/src/components/barcodes/BarcodeScanItem.tsx +0 -23
- package/src/components/barcodes/QRCode.tsx +0 -211
- package/src/components/buttons/ActionButton.tsx +0 -61
- package/src/components/buttons/AddItemButton.tsx +0 -10
- package/src/components/buttons/AdminButton.tsx +0 -91
- package/src/components/buttons/ButtonMenu.tsx +0 -33
- package/src/components/buttons/CopyButton.tsx +0 -52
- package/src/components/buttons/PrimaryActionButton.tsx +0 -40
- package/src/components/buttons/PrintingActions.tsx +0 -191
- package/src/components/buttons/RemoveRowButton.tsx +0 -22
- package/src/components/buttons/SSOButton.tsx +0 -53
- package/src/components/buttons/ScanButton.tsx +0 -27
- package/src/components/buttons/SegmentedIconControl.tsx +0 -51
- package/src/components/buttons/SplitButton.css.ts +0 -19
- package/src/components/buttons/SplitButton.tsx +0 -111
- package/src/components/buttons/SpotlightButton.tsx +0 -22
- package/src/components/buttons/StarredToggleButton.tsx +0 -62
- package/src/components/buttons/YesNoButton.tsx +0 -42
- package/src/components/calendar/Calendar.tsx +0 -193
- package/src/components/calendar/OrderCalendar.tsx +0 -209
- package/src/components/charts/colors.tsx +0 -12
- package/src/components/charts/tooltipFormatter.tsx +0 -12
- package/src/components/dashboard/DashboardLayout.tsx +0 -327
- package/src/components/dashboard/DashboardMenu.tsx +0 -136
- package/src/components/dashboard/DashboardWidget.tsx +0 -82
- package/src/components/dashboard/DashboardWidgetDrawer.tsx +0 -130
- package/src/components/dashboard/DashboardWidgetLibrary.tsx +0 -189
- package/src/components/dashboard/widgets/ColorToggleWidget.tsx +0 -28
- package/src/components/dashboard/widgets/GetStartedWidget.tsx +0 -19
- package/src/components/dashboard/widgets/LanguageSelectWidget.tsx +0 -28
- package/src/components/dashboard/widgets/NewsWidget.tsx +0 -143
- package/src/components/dashboard/widgets/QueryCountDashboardWidget.tsx +0 -134
- package/src/components/details/Details.tsx +0 -514
- package/src/components/details/DetailsBadge.tsx +0 -20
- package/src/components/details/DetailsImage.tsx +0 -462
- package/src/components/details/ItemDetails.tsx +0 -17
- package/src/components/editors/NotesEditor.tsx +0 -232
- package/src/components/editors/TemplateEditor/CodeEditor/CodeEditor.tsx +0 -158
- package/src/components/editors/TemplateEditor/CodeEditor/index.tsx +0 -12
- package/src/components/editors/TemplateEditor/PdfPreview/PdfPreview.tsx +0 -90
- package/src/components/editors/TemplateEditor/PdfPreview/index.tsx +0 -12
- package/src/components/editors/TemplateEditor/TemplateEditor.tsx +0 -425
- package/src/components/editors/TemplateEditor/index.tsx +0 -3
- package/src/components/errors/ClientError.tsx +0 -28
- package/src/components/errors/GenericErrorPage.tsx +0 -73
- package/src/components/errors/NotAuthenticated.tsx +0 -12
- package/src/components/errors/NotFound.tsx +0 -12
- package/src/components/errors/PermissionDenied.tsx +0 -12
- package/src/components/errors/ServerError.tsx +0 -13
- package/src/components/forms/ApiForm.tsx +0 -718
- package/src/components/forms/AuthFormOptions.tsx +0 -39
- package/src/components/forms/AuthenticationForm.tsx +0 -332
- package/src/components/forms/HostOptionsForm.tsx +0 -96
- package/src/components/forms/InstanceOptions.tsx +0 -178
- package/src/components/forms/StandaloneField.tsx +0 -55
- package/src/components/forms/fields/ApiFormField.tsx +0 -281
- package/src/components/forms/fields/ChoiceField.tsx +0 -86
- package/src/components/forms/fields/DateField.tsx +0 -79
- package/src/components/forms/fields/DependentField.tsx +0 -91
- package/src/components/forms/fields/IconField.tsx +0 -353
- package/src/components/forms/fields/NestedObjectField.tsx +0 -45
- package/src/components/forms/fields/RelatedModelField.tsx +0 -339
- package/src/components/forms/fields/TableField.tsx +0 -275
- package/src/components/forms/fields/TextField.tsx +0 -81
- package/src/components/images/ApiImage.tsx +0 -35
- package/src/components/images/Thumbnail.tsx +0 -52
- package/src/components/importer/ImportDataSelector.tsx +0 -433
- package/src/components/importer/ImporterColumnSelector.tsx +0 -244
- package/src/components/importer/ImporterDrawer.tsx +0 -173
- package/src/components/importer/ImporterImportProgress.tsx +0 -45
- package/src/components/items/ActionDropdown.tsx +0 -290
- package/src/components/items/ApiIcon.css.ts +0 -13
- package/src/components/items/ApiIcon.tsx +0 -32
- package/src/components/items/AttachmentLink.tsx +0 -79
- package/src/components/items/ColorToggle.tsx +0 -34
- package/src/components/items/DashboardItem.tsx +0 -33
- package/src/components/items/DocInfo.tsx +0 -20
- package/src/components/items/DocTooltip.tsx +0 -98
- package/src/components/items/ErrorItem.tsx +0 -17
- package/src/components/items/Expand.tsx +0 -14
- package/src/components/items/GettingStartedCarousel.css.ts +0 -30
- package/src/components/items/GettingStartedCarousel.tsx +0 -49
- package/src/components/items/InfoItem.tsx +0 -64
- package/src/components/items/InvenTreeLogo.tsx +0 -24
- package/src/components/items/LanguageSelect.tsx +0 -43
- package/src/components/items/LanguageToggle.tsx +0 -37
- package/src/components/items/MenuLinks.tsx +0 -113
- package/src/components/items/OnlyStaff.tsx +0 -10
- package/src/components/items/ProgressBar.tsx +0 -45
- package/src/components/items/StylishText.tsx +0 -59
- package/src/components/items/TitleWithDoc.tsx +0 -26
- package/src/components/items/UnavailableIndicator.tsx +0 -5
- package/src/components/items/inventree.svg +0 -1
- package/src/components/modals/AboutInvenTreeModal.tsx +0 -203
- package/src/components/modals/LicenseModal.tsx +0 -116
- package/src/components/modals/QrModal.tsx +0 -21
- package/src/components/modals/ServerInfoModal.tsx +0 -136
- package/src/components/nav/Alerts.tsx +0 -130
- package/src/components/nav/BreadcrumbList.tsx +0 -84
- package/src/components/nav/DetailDrawer.css.ts +0 -6
- package/src/components/nav/DetailDrawer.tsx +0 -105
- package/src/components/nav/Footer.tsx +0 -11
- package/src/components/nav/Header.tsx +0 -226
- package/src/components/nav/InstanceDetail.tsx +0 -46
- package/src/components/nav/Layout.tsx +0 -85
- package/src/components/nav/MainMenu.tsx +0 -101
- package/src/components/nav/NavHoverMenu.tsx +0 -15
- package/src/components/nav/NavigationDrawer.tsx +0 -230
- package/src/components/nav/NavigationTree.tsx +0 -210
- package/src/components/nav/NotificationDrawer.tsx +0 -231
- package/src/components/nav/PageDetail.tsx +0 -171
- package/src/components/nav/PageTitle.tsx +0 -53
- package/src/components/nav/SearchDrawer.tsx +0 -598
- package/src/components/nav/SettingsHeader.tsx +0 -50
- package/src/components/panels/AttachmentPanel.tsx +0 -27
- package/src/components/panels/NotesPanel.tsx +0 -36
- package/src/components/panels/Panel.tsx +0 -15
- package/src/components/panels/PanelGroup.css.ts +0 -10
- package/src/components/panels/PanelGroup.tsx +0 -292
- package/src/components/plugins/LocateItemButton.tsx +0 -94
- package/src/components/plugins/PluginContext.tsx +0 -67
- package/src/components/plugins/PluginDrawer.tsx +0 -156
- package/src/components/plugins/PluginInterface.tsx +0 -34
- package/src/components/plugins/PluginPanel.tsx +0 -37
- package/src/components/plugins/PluginSettingsPanel.tsx +0 -34
- package/src/components/plugins/PluginSource.tsx +0 -48
- package/src/components/plugins/PluginUIFeature.tsx +0 -174
- package/src/components/plugins/PluginUIFeatureTypes.ts +0 -78
- package/src/components/plugins/RemoteComponent.tsx +0 -137
- package/src/components/render/Build.tsx +0 -54
- package/src/components/render/Company.tsx +0 -114
- package/src/components/render/Generic.tsx +0 -49
- package/src/components/render/Instance.tsx +0 -240
- package/src/components/render/InstanceFromUrl.tsx +0 -33
- package/src/components/render/Order.tsx +0 -124
- package/src/components/render/Part.tsx +0 -109
- package/src/components/render/Plugin.tsx +0 -21
- package/src/components/render/Report.tsx +0 -29
- package/src/components/render/StatusRenderer.tsx +0 -178
- package/src/components/render/Stock.tsx +0 -84
- package/src/components/render/User.tsx +0 -42
- package/src/components/settings/FactCollection.tsx +0 -31
- package/src/components/settings/FactItem.tsx +0 -17
- package/src/components/settings/SettingItem.tsx +0 -176
- package/src/components/settings/SettingList.tsx +0 -217
- package/src/components/wizards/OrderPartsWizard.tsx +0 -473
- package/src/components/wizards/WizardDrawer.tsx +0 -188
- package/src/contexts/ApiContext.tsx +0 -31
- package/src/contexts/LanguageContext.tsx +0 -155
- package/src/contexts/ThemeContext.tsx +0 -58
- package/src/contexts/colorSchema.tsx +0 -67
- package/src/defaults/actions.tsx +0 -87
- package/src/defaults/backendMappings.tsx +0 -32
- package/src/defaults/defaultHostList.tsx +0 -4
- package/src/defaults/defaults.tsx +0 -38
- package/src/defaults/formatters.tsx +0 -176
- package/src/defaults/links.tsx +0 -193
- package/src/defaults/templates.tsx +0 -53
- package/src/forms/BomForms.tsx +0 -26
- package/src/forms/BuildForms.tsx +0 -615
- package/src/forms/CommonForms.tsx +0 -89
- package/src/forms/CompanyForms.tsx +0 -133
- package/src/forms/ImporterForms.tsx +0 -20
- package/src/forms/PartForms.tsx +0 -281
- package/src/forms/PurchaseOrderForms.tsx +0 -779
- package/src/forms/ReturnOrderForms.tsx +0 -263
- package/src/forms/SalesOrderForms.tsx +0 -408
- package/src/forms/StockForms.tsx +0 -1296
- package/src/forms/selectionListFields.tsx +0 -120
- package/src/functions/api.tsx +0 -61
- package/src/functions/auth.tsx +0 -574
- package/src/functions/conversion.tsx +0 -42
- package/src/functions/forms.tsx +0 -173
- package/src/functions/icons.tsx +0 -294
- package/src/functions/loading.tsx +0 -29
- package/src/functions/navigation.tsx +0 -20
- package/src/functions/notifications.tsx +0 -101
- package/src/functions/tables.tsx +0 -26
- package/src/functions/uid.tsx +0 -15
- package/src/functions/urls.tsx +0 -58
- package/src/hooks/UseCalendar.tsx +0 -178
- package/src/hooks/UseDashboardItems.tsx +0 -118
- package/src/hooks/UseDataExport.tsx +0 -125
- package/src/hooks/UseDataOutput.tsx +0 -109
- package/src/hooks/UseFilter.tsx +0 -67
- package/src/hooks/UseFilterSet.tsx +0 -24
- package/src/hooks/UseForm.tsx +0 -161
- package/src/hooks/UseGenerator.tsx +0 -92
- package/src/hooks/UseImportSession.tsx +0 -139
- package/src/hooks/UseInstance.tsx +0 -137
- package/src/hooks/UseInstanceName.tsx +0 -14
- package/src/hooks/UseModal.tsx +0 -38
- package/src/hooks/UsePlaceholder.tsx +0 -66
- package/src/hooks/UsePluginPanels.tsx +0 -123
- package/src/hooks/UsePluginUIFeature.tsx +0 -95
- package/src/hooks/UsePlugins.tsx +0 -45
- package/src/hooks/UseSelectedRows.tsx +0 -37
- package/src/hooks/UseStatusCodes.tsx +0 -50
- package/src/hooks/UseTable.tsx +0 -145
- package/src/hooks/UseWizard.tsx +0 -133
- package/src/locales/ar/messages.d.ts +0 -4
- package/src/locales/ar/messages.po +0 -10695
- package/src/locales/ar/messages.ts +0 -1
- package/src/locales/bg/messages.d.ts +0 -4
- package/src/locales/bg/messages.po +0 -10695
- package/src/locales/bg/messages.ts +0 -1
- package/src/locales/cs/messages.d.ts +0 -4
- package/src/locales/cs/messages.po +0 -10695
- package/src/locales/cs/messages.ts +0 -1
- package/src/locales/da/messages.d.ts +0 -4
- package/src/locales/da/messages.po +0 -10695
- package/src/locales/da/messages.ts +0 -1
- package/src/locales/de/messages.d.ts +0 -4
- package/src/locales/de/messages.po +0 -10695
- package/src/locales/de/messages.ts +0 -1
- package/src/locales/el/messages.d.ts +0 -4
- package/src/locales/el/messages.po +0 -10695
- package/src/locales/el/messages.ts +0 -1
- package/src/locales/en/messages.d.ts +0 -4
- package/src/locales/en/messages.po +0 -10689
- package/src/locales/en/messages.ts +0 -1
- package/src/locales/es/messages.d.ts +0 -4
- package/src/locales/es/messages.po +0 -10695
- package/src/locales/es/messages.ts +0 -1
- package/src/locales/es_MX/messages.d.ts +0 -4
- package/src/locales/es_MX/messages.po +0 -10695
- package/src/locales/es_MX/messages.ts +0 -1
- package/src/locales/et/messages.d.ts +0 -4
- package/src/locales/et/messages.po +0 -10695
- package/src/locales/et/messages.ts +0 -1
- package/src/locales/fa/messages.d.ts +0 -4
- package/src/locales/fa/messages.po +0 -10695
- package/src/locales/fa/messages.ts +0 -1
- package/src/locales/fi/messages.d.ts +0 -4
- package/src/locales/fi/messages.po +0 -10695
- package/src/locales/fi/messages.ts +0 -1
- package/src/locales/fr/messages.d.ts +0 -4
- package/src/locales/fr/messages.po +0 -10695
- package/src/locales/fr/messages.ts +0 -1
- package/src/locales/he/messages.d.ts +0 -4
- package/src/locales/he/messages.po +0 -10695
- package/src/locales/he/messages.ts +0 -1
- package/src/locales/hi/messages.d.ts +0 -4
- package/src/locales/hi/messages.po +0 -10695
- package/src/locales/hi/messages.ts +0 -1
- package/src/locales/hu/messages.d.ts +0 -4
- package/src/locales/hu/messages.po +0 -10695
- package/src/locales/hu/messages.ts +0 -1
- package/src/locales/id/messages.po +0 -10695
- package/src/locales/it/messages.d.ts +0 -4
- package/src/locales/it/messages.po +0 -10695
- package/src/locales/it/messages.ts +0 -1
- package/src/locales/ja/messages.d.ts +0 -4
- package/src/locales/ja/messages.po +0 -10695
- package/src/locales/ja/messages.ts +0 -1
- package/src/locales/ko/messages.d.ts +0 -4
- package/src/locales/ko/messages.po +0 -10695
- package/src/locales/ko/messages.ts +0 -1
- package/src/locales/lt/messages.d.ts +0 -4
- package/src/locales/lt/messages.po +0 -10695
- package/src/locales/lt/messages.ts +0 -1
- package/src/locales/lv/messages.d.ts +0 -4
- package/src/locales/lv/messages.po +0 -10695
- package/src/locales/lv/messages.ts +0 -1
- package/src/locales/nl/messages.d.ts +0 -4
- package/src/locales/nl/messages.po +0 -10695
- package/src/locales/nl/messages.ts +0 -1
- package/src/locales/no/messages.d.ts +0 -4
- package/src/locales/no/messages.po +0 -10695
- package/src/locales/no/messages.ts +0 -1
- package/src/locales/pl/messages.d.ts +0 -4
- package/src/locales/pl/messages.po +0 -10695
- package/src/locales/pl/messages.ts +0 -1
- package/src/locales/pseudo-LOCALE/messages.d.ts +0 -4
- package/src/locales/pseudo-LOCALE/messages.po +0 -8003
- package/src/locales/pseudo-LOCALE/messages.ts +0 -1
- package/src/locales/pt/messages.d.ts +0 -4
- package/src/locales/pt/messages.po +0 -10696
- package/src/locales/pt/messages.ts +0 -1
- package/src/locales/pt_BR/messages.d.ts +0 -4
- package/src/locales/pt_BR/messages.po +0 -10695
- package/src/locales/pt_BR/messages.ts +0 -1
- package/src/locales/ro/messages.po +0 -10695
- package/src/locales/ro/messages.ts +0 -1
- package/src/locales/ru/messages.d.ts +0 -4
- package/src/locales/ru/messages.po +0 -10695
- package/src/locales/ru/messages.ts +0 -1
- package/src/locales/sk/messages.d.ts +0 -4
- package/src/locales/sk/messages.po +0 -10695
- package/src/locales/sk/messages.ts +0 -1
- package/src/locales/sl/messages.d.ts +0 -4
- package/src/locales/sl/messages.po +0 -10695
- package/src/locales/sl/messages.ts +0 -1
- package/src/locales/sr/messages.d.ts +0 -4
- package/src/locales/sr/messages.po +0 -10695
- package/src/locales/sr/messages.ts +0 -1
- package/src/locales/sv/messages.d.ts +0 -4
- package/src/locales/sv/messages.po +0 -10695
- package/src/locales/sv/messages.ts +0 -1
- package/src/locales/th/messages.d.ts +0 -4
- package/src/locales/th/messages.po +0 -10695
- package/src/locales/th/messages.ts +0 -1
- package/src/locales/tr/messages.d.ts +0 -4
- package/src/locales/tr/messages.po +0 -10695
- package/src/locales/tr/messages.ts +0 -1
- package/src/locales/uk/messages.d.ts +0 -3
- package/src/locales/uk/messages.po +0 -10695
- package/src/locales/uk/messages.ts +0 -1
- package/src/locales/vi/messages.d.ts +0 -4
- package/src/locales/vi/messages.po +0 -10695
- package/src/locales/vi/messages.ts +0 -1
- package/src/locales/zh_Hans/messages.d.ts +0 -4
- package/src/locales/zh_Hans/messages.po +0 -10695
- package/src/locales/zh_Hans/messages.ts +0 -1
- package/src/locales/zh_Hant/messages.d.ts +0 -4
- package/src/locales/zh_Hant/messages.po +0 -10695
- package/src/locales/zh_Hant/messages.ts +0 -1
- package/src/main.css.ts +0 -148
- package/src/main.tsx +0 -123
- package/src/pages/Auth/ChangePassword.tsx +0 -84
- package/src/pages/Auth/Layout.tsx +0 -74
- package/src/pages/Auth/LoggedIn.tsx +0 -21
- package/src/pages/Auth/Login.tsx +0 -133
- package/src/pages/Auth/Logout.tsx +0 -16
- package/src/pages/Auth/MFA.tsx +0 -36
- package/src/pages/Auth/MFASetup.tsx +0 -38
- package/src/pages/Auth/Register.tsx +0 -28
- package/src/pages/Auth/Reset.tsx +0 -30
- package/src/pages/Auth/ResetPassword.tsx +0 -48
- package/src/pages/Auth/VerifyEmail.tsx +0 -34
- package/src/pages/ErrorPage.tsx +0 -26
- package/src/pages/Index/Home.tsx +0 -12
- package/src/pages/Index/Scan.tsx +0 -258
- package/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx +0 -162
- package/src/pages/Index/Settings/AccountSettings/QrRegistrationForm.tsx +0 -38
- package/src/pages/Index/Settings/AccountSettings/SecurityContent.tsx +0 -713
- package/src/pages/Index/Settings/AccountSettings/UserPanel.tsx +0 -24
- package/src/pages/Index/Settings/AccountSettings/UserThemePanel.tsx +0 -207
- package/src/pages/Index/Settings/AccountSettings/useConfirm.tsx +0 -117
- package/src/pages/Index/Settings/AdminCenter/CurrencyManagementPanel.tsx +0 -111
- package/src/pages/Index/Settings/AdminCenter/Index.tsx +0 -251
- package/src/pages/Index/Settings/AdminCenter/LabelTemplatePanel.tsx +0 -23
- package/src/pages/Index/Settings/AdminCenter/MachineManagementPanel.tsx +0 -110
- package/src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx +0 -29
- package/src/pages/Index/Settings/AdminCenter/PluginManagementPanel.tsx +0 -84
- package/src/pages/Index/Settings/AdminCenter/ReportTemplatePanel.tsx +0 -38
- package/src/pages/Index/Settings/AdminCenter/StocktakePanel.tsx +0 -31
- package/src/pages/Index/Settings/AdminCenter/TaskManagementPanel.tsx +0 -73
- package/src/pages/Index/Settings/AdminCenter/UnitManagementPanel.tsx +0 -74
- package/src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx +0 -49
- package/src/pages/Index/Settings/SystemSettings.tsx +0 -339
- package/src/pages/Index/Settings/UserSettings.tsx +0 -143
- package/src/pages/Notifications.tsx +0 -134
- package/src/pages/build/BuildDetail.tsx +0 -579
- package/src/pages/build/BuildIndex.tsx +0 -100
- package/src/pages/company/CompanyDetail.tsx +0 -352
- package/src/pages/company/CustomerDetail.tsx +0 -13
- package/src/pages/company/ManufacturerDetail.tsx +0 -13
- package/src/pages/company/ManufacturerPartDetail.tsx +0 -307
- package/src/pages/company/SupplierDetail.tsx +0 -13
- package/src/pages/company/SupplierPartDetail.tsx +0 -433
- package/src/pages/core/CoreIndex.tsx +0 -50
- package/src/pages/core/GroupDetail.tsx +0 -97
- package/src/pages/core/UserDetail.tsx +0 -193
- package/src/pages/part/CategoryDetail.tsx +0 -369
- package/src/pages/part/PartAllocationPanel.tsx +0 -40
- package/src/pages/part/PartDetail.tsx +0 -1071
- package/src/pages/part/PartPricingPanel.tsx +0 -155
- package/src/pages/part/PartSchedulingDetail.tsx +0 -315
- package/src/pages/part/PartStocktakeDetail.tsx +0 -285
- package/src/pages/part/PartSupplierDetail.tsx +0 -31
- package/src/pages/part/pricing/BomPricingPanel.tsx +0 -269
- package/src/pages/part/pricing/PriceBreakPanel.tsx +0 -182
- package/src/pages/part/pricing/PricingOverviewPanel.tsx +0 -338
- package/src/pages/part/pricing/PricingPanel.tsx +0 -82
- package/src/pages/part/pricing/PurchaseHistoryPanel.tsx +0 -134
- package/src/pages/part/pricing/SaleHistoryPanel.tsx +0 -95
- package/src/pages/part/pricing/SupplierPricingPanel.tsx +0 -80
- package/src/pages/part/pricing/VariantPricingPanel.tsx +0 -112
- package/src/pages/purchasing/PurchaseOrderDetail.tsx +0 -547
- package/src/pages/purchasing/PurchasingIndex.tsx +0 -131
- package/src/pages/sales/ReturnOrderDetail.tsx +0 -529
- package/src/pages/sales/SalesIndex.tsx +0 -148
- package/src/pages/sales/SalesOrderDetail.tsx +0 -593
- package/src/pages/sales/SalesOrderShipmentDetail.tsx +0 -385
- package/src/pages/stock/LocationDetail.tsx +0 -413
- package/src/pages/stock/StockDetail.tsx +0 -951
- package/src/router.tsx +0 -213
- package/src/states/ApiState.tsx +0 -85
- package/src/states/IconState.tsx +0 -94
- package/src/states/LocalState.tsx +0 -181
- package/src/states/SettingsState.tsx +0 -206
- package/src/states/StatusState.tsx +0 -55
- package/src/states/UserState.tsx +0 -202
- package/src/states/states.tsx +0 -69
- package/src/tables/Column.tsx +0 -29
- package/src/tables/ColumnRenderers.tsx +0 -320
- package/src/tables/ColumnSelect.tsx +0 -39
- package/src/tables/Filter.tsx +0 -297
- package/src/tables/FilterSelectDrawer.tsx +0 -358
- package/src/tables/InvenTreeTable.tsx +0 -750
- package/src/tables/InvenTreeTableHeader.tsx +0 -257
- package/src/tables/RowActions.tsx +0 -176
- package/src/tables/RowExpansionIcon.tsx +0 -16
- package/src/tables/Search.tsx +0 -42
- package/src/tables/TableHoverCard.tsx +0 -91
- package/src/tables/bom/BomTable.tsx +0 -590
- package/src/tables/bom/UsedInTable.tsx +0 -114
- package/src/tables/build/BuildAllocatedStockTable.tsx +0 -233
- package/src/tables/build/BuildLineTable.tsx +0 -800
- package/src/tables/build/BuildOrderTable.tsx +0 -226
- package/src/tables/build/BuildOrderTestTable.tsx +0 -265
- package/src/tables/build/BuildOutputTable.tsx +0 -599
- package/src/tables/company/AddressTable.tsx +0 -211
- package/src/tables/company/CompanyTable.tsx +0 -176
- package/src/tables/company/ContactTable.tsx +0 -182
- package/src/tables/core/UserTable.tsx +0 -88
- package/src/tables/general/AttachmentTable.tsx +0 -404
- package/src/tables/general/BarcodeScanTable.tsx +0 -124
- package/src/tables/general/ExtraLineItemTable.tsx +0 -174
- package/src/tables/machine/MachineListTable.tsx +0 -634
- package/src/tables/machine/MachineTypeTable.tsx +0 -395
- package/src/tables/notifications/NotificationTable.tsx +0 -60
- package/src/tables/part/ParametricPartTable.tsx +0 -297
- package/src/tables/part/PartBuildAllocationsTable.tsx +0 -128
- package/src/tables/part/PartCategoryTable.tsx +0 -208
- package/src/tables/part/PartCategoryTemplateTable.tsx +0 -157
- package/src/tables/part/PartParameterTable.tsx +0 -226
- package/src/tables/part/PartParameterTemplateTable.tsx +0 -168
- package/src/tables/part/PartPurchaseOrdersTable.tsx +0 -163
- package/src/tables/part/PartSalesAllocationsTable.tsx +0 -130
- package/src/tables/part/PartTable.tsx +0 -423
- package/src/tables/part/PartTestTemplateTable.tsx +0 -290
- package/src/tables/part/PartThumbTable.tsx +0 -230
- package/src/tables/part/PartVariantTable.tsx +0 -52
- package/src/tables/part/RelatedPartTable.tsx +0 -182
- package/src/tables/part/SelectionListTable.tsx +0 -134
- package/src/tables/plugin/PluginErrorTable.tsx +0 -58
- package/src/tables/plugin/PluginListTable.tsx +0 -440
- package/src/tables/purchasing/ManufacturerPartParameterTable.tsx +0 -136
- package/src/tables/purchasing/ManufacturerPartTable.tsx +0 -158
- package/src/tables/purchasing/PurchaseOrderLineItemTable.tsx +0 -424
- package/src/tables/purchasing/PurchaseOrderTable.tsx +0 -193
- package/src/tables/purchasing/SupplierPartTable.tsx +0 -281
- package/src/tables/purchasing/SupplierPriceBreakTable.tsx +0 -222
- package/src/tables/sales/ReturnOrderLineItemTable.tsx +0 -271
- package/src/tables/sales/ReturnOrderTable.tsx +0 -201
- package/src/tables/sales/SalesOrderAllocationTable.tsx +0 -330
- package/src/tables/sales/SalesOrderLineItemTable.tsx +0 -508
- package/src/tables/sales/SalesOrderShipmentTable.tsx +0 -225
- package/src/tables/sales/SalesOrderTable.tsx +0 -212
- package/src/tables/settings/ApiTokenTable.tsx +0 -203
- package/src/tables/settings/BarcodeScanHistoryTable.tsx +0 -281
- package/src/tables/settings/CustomStateTable.tsx +0 -226
- package/src/tables/settings/CustomUnitsTable.tsx +0 -125
- package/src/tables/settings/ErrorTable.tsx +0 -170
- package/src/tables/settings/ExportSessionTable.tsx +0 -60
- package/src/tables/settings/FailedTasksTable.tsx +0 -103
- package/src/tables/settings/GroupTable.tsx +0 -240
- package/src/tables/settings/ImportSessionTable.tsx +0 -175
- package/src/tables/settings/PendingTasksTable.tsx +0 -63
- package/src/tables/settings/ProjectCodeTable.tsx +0 -115
- package/src/tables/settings/ScheduledTasksTable.tsx +0 -62
- package/src/tables/settings/StocktakeReportTable.tsx +0 -111
- package/src/tables/settings/TemplateTable.tsx +0 -404
- package/src/tables/settings/UserTable.tsx +0 -329
- package/src/tables/stock/InstalledItemsTable.tsx +0 -146
- package/src/tables/stock/LocationTypesTable.tsx +0 -132
- package/src/tables/stock/StockItemTable.tsx +0 -707
- package/src/tables/stock/StockItemTestResultTable.tsx +0 -487
- package/src/tables/stock/StockLocationTable.tsx +0 -208
- package/src/tables/stock/StockTrackingTable.tsx +0 -244
- package/src/theme.ts +0 -5
- package/src/views/DesktopAppView.tsx +0 -28
- package/src/views/MainView.tsx +0 -38
- package/src/views/MobileAppView.tsx +0 -43
- package/tests/baseFixtures.ts +0 -93
- package/tests/defaults.ts +0 -18
- package/tests/helpers.ts +0 -122
- package/tests/login.ts +0 -97
- package/tests/pages/pui_build.spec.ts +0 -373
- package/tests/pages/pui_company.spec.ts +0 -40
- package/tests/pages/pui_core.spec.ts +0 -26
- package/tests/pages/pui_dashboard.spec.ts +0 -64
- package/tests/pages/pui_part.spec.ts +0 -413
- package/tests/pages/pui_purchase_order.spec.ts +0 -388
- package/tests/pages/pui_sales_order.spec.ts +0 -224
- package/tests/pages/pui_scan.spec.ts +0 -114
- package/tests/pages/pui_stock.spec.ts +0 -259
- package/tests/pui_exporting.spec.ts +0 -124
- package/tests/pui_forms.spec.ts +0 -131
- package/tests/pui_general.spec.ts +0 -60
- package/tests/pui_login.spec.ts +0 -74
- package/tests/pui_modals.spec.ts +0 -144
- package/tests/pui_plugins.spec.ts +0 -216
- package/tests/pui_printing.spec.ts +0 -149
- package/tests/pui_settings.spec.ts +0 -285
- package/tests/pui_tables.spec.ts +0 -65
- package/tests/settings/selectionList.spec.ts +0 -103
- package/tests/settings.ts +0 -54
- package/tsconfig.json +0 -25
- package/tsconfig.lib.json +0 -13
- package/tsconfig.node.json +0 -11
- package/vite-env.d.ts +0 -11
- package/vite.config.ts +0 -98
- package/vite.lib.config.ts +0 -50
- /package/{public → dist}/inventree.svg +0 -0
- /package/{src/functions/events.tsx → lib/functions/Events.tsx} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"qwCNwv\":[\"Lỗi khi hiển thị thành phần\"],\"kH8meY\":[\"Một lỗi đã xảy ra trong quá trình hiển thị thành phần này. Vui lòng tham khảo bảng điều khiển để biết thêm thông tin.\"],\"MHrjPM\":[\"Title\"],\"bR26mb\":[\"Lỗi khi quét\"],\"fvJQqd\":[\"Lỗi trong khi dừng lại\"],\"/Snx90\":[\"Start scanning by selecting a camera and pressing the play button.\"],\"yFRXH8\":[\"Dừng quét\"],\"m3BKG+\":[\"Bắt đầu quét\"],\"ap+FLU\":[\"Mã vạch\"],\"I+FvbD\":[\"Scan\"],\"XlKBRl\":[\"Camera Input\"],\"n89Qe0\":[\"Scanner Input\"],\"Hl6ptb\":[\"Barcode Data\"],\"6bgCex\":[\"No barcode data\"],\"14K7ED\":[\"Scan or enter barcode data\"],\"SlfejT\":[\"Lỗi\"],\"tEKWTi\":[\"Enter barcode data\"],\"fNvDwV\":[\"Quét mã vạch\"],\"sikegI\":[\"No matching item found\"],\"I3WmwV\":[\"Failed to scan barcode\"],\"vAoQxm\":[\"Thấp (7%)\"],\"xuqOBP\":[\"Trung bình (15%)\"],\"cxfKe+\":[\"Một phần tư (25%)\"],\"rgHRyZ\":[\"Cao (30%)\"],\"/FLHWb\":[\"Custom barcode\"],\"AjTb8p\":[\"Mã vạch tùy chỉnh đã được đăng ký cho mặt hàng này. Mã hiển thị không phải là mã vạch tùy chỉnh đó.\"],\"vDT9iq\":[\"Dữ liệu mã vạch:\"],\"md4cw+\":[\"Chọn mức độ sửa lỗi\"],\"59QdRH\":[\"Failed to link barcode\"],\"yzF66j\":[\"Liên kết\"],\"GZnnMw\":[\"Thao tác này sẽ xóa liên kết đến mã vạch được liên kết\"],\"ut1J8k\":[\"Gỡ liên kết mã vạch\"],\"oyvgJt\":[\"Mở trong giao diện quản trị\"],\"/4gGIX\":[\"Copy to clipboard\"],\"6V3Ea3\":[\"Đã sao chép\"],\"he3ygx\":[\"Sao chép\"],\"5cY8gX\":[\"Printing Labels\"],\"T6GYw9\":[\"Printing Reports\"],\"fWLk/q\":[\"Printing\"],\"dI97M9\":[\"Printing completed successfully\"],\"pT7uop\":[\"Label printing completed successfully\"],\"kjqRDg\":[\"In nhãn\"],\"3Dx00w\":[\"The label could not be generated\"],\"BZz12Q\":[\"In\"],\"qsurSb\":[\"In báo cáo\"],\"ziAjHi\":[\"Generate\"],\"nu+rR/\":[\"Report printing completed successfully\"],\"cvLQZH\":[\"The report could not be generated\"],\"/oz6DG\":[\"Các hành động in\"],\"Y93N6T\":[\"In nhãn\"],\"ClULGR\":[\"In báo cáo\"],\"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\":[\"Mở đèn chiếu\"],\"q0ylYE\":[\"Unsubscribe from part\"],\"wFwgKk\":[\"Hoàn tất\"],\"qcloGZ\":[\"Thất bại\"],\"l75CjT\":[\"Đồng ý\"],\"1UzENP\":[\"Không\"],\"jPJ7ye\":[\"Calendar Filters\"],\"1xwZj/\":[\"Previous month\"],\"XEb3iO\":[\"Select month\"],\"g8JmSC\":[\"Next month\"],\"ECXmiK\":[\"Download data\"],\"e7eZuA\":[\"Order Updated\"],\"uNg5Jm\":[\"Error updating order\"],\"ddrz1m\":[\"Quá hạn\"],\"1tCrqz\":[\"No Widgets Selected\"],\"9Tu3p3\":[\"Use the menu to add widgets to the dashboard\"],\"ubMDQ+\":[\"Accept Layout\"],\"7p5kLi\":[\"Bảng điều khiển\"],\"NZubw3\":[\"Sửa bố cục\"],\"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\":[\"Phụ kiện đã đăng ký\"],\"8FlX7D\":[\"Show the number of parts which you have subscribed to\"],\"GuGbPw\":[\"Danh mục đã đăng ký\"],\"Ze1ycm\":[\"Show the number of part categories which you have subscribed to\"],\"UgdO7s\":[\"Còn ít hàng\"],\"ubzHR4\":[\"Show the number of parts which are low on stock\"],\"Iq/utX\":[\"Yêu cầu cho đơn đặt bản dựng\"],\"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\":[\"Đơn đặt bản dựng đang quá hạn\"],\"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\":[\"Đơn đặt quá hạn\"],\"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\":[\"Đơn mua quá hạn\"],\"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\":[\"Bắt đầu\"],\"VAYCzI\":[\"Bắt đầu với InvenTree\"],\"D672yr\":[\"News Updates\"],\"jn9KFI\":[\"The latest news from InvenTree\"],\"4i3x9F\":[\"Thay đổi chế độ màu\"],\"B4aZZ/\":[\"Change the color mode of the user interface\"],\"9Ogg2c\":[\"Change Language\"],\"aOzZOm\":[\"Change the language of the user interface\"],\"+s1J8k\":[\"Đánh dấu đã đọc\"],\"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\":[\"Chưa định nghĩa tên\"],\"yM9e7f\":[\"Xoá hình\"],\"R3/yR2\":[\"Xóa hình liên quan khỏi mục này?\"],\"dEgA5A\":[\"Hủy bỏ\"],\"t/YqKh\":[\"Xoá\"],\"irD+Qq\":[\"Kéo tập tin để tải lê\"],\"lckouq\":[\"Nhấp vào để chọn file\"],\"44Z8LC\":[\"Image uploaded\"],\"k26cjD\":[\"Image has been uploaded successfully\"],\"ae3dey\":[\"Lỗi tải lên\"],\"xCJdfg\":[\"Clear\"],\"hQRttt\":[\"Gửi\"],\"8rV56y\":[\"Chọn từ hình ảnh có sẵn\"],\"bAiEJP\":[\"Chọn hình ảnh\"],\"5hbUXw\":[\"Download remote image\"],\"BOkCZT\":[\"Tải lên ảnh mới\"],\"lnCMdg\":[\"Tải lên ảnh\"],\"+jw/c1\":[\"Xoá ảnh\"],\"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\":[\"Tải ảnh thất bại\"],\"zzDlyQ\":[\"Thành công\"],\"AGZmwV\":[\"Image uploaded successfully\"],\"FZvELs\":[\"Lưu ghi chú thành công\"],\"vBI46M\":[\"Không lưu được chú thích\"],\"WC5d6R\":[\"Error Saving Notes\"],\"jZKAOq\":[\"Disable Editing\"],\"9F3QxH\":[\"Lưu ghi chú\"],\"A7t6PY\":[\"Close Editor\"],\"nYrVJr\":[\"Enable Editing\"],\"nWSd91\":[\"Preview Notes\"],\"bmmD8r\":[\"Edit Notes\"],\"EWPtMO\":[\"Mã\"],\"HxuuQd\":[\"Failed to parse error response from server.\"],\"DnCO2h\":[\"Xem trước không khả dụng, nhấp \\\"Tải lại xem trước\\\".\"],\"yz4FE1\":[\"Xem trước PDF\"],\"AK4HwH\":[\"Lỗi load mẫu\"],\"1khwzo\":[\"Lỗi lưu mẫu\"],\"wWZgjk\":[\"Could not load the template from the server.\"],\"wYQmW6\":[\"Save & Reload preview?\"],\"1xlsgl\":[\"Lưu và tải lại xem trước\"],\"Jsx2cQ\":[\"Bạn có muốn lưu và tải lại xem trước?\"],\"3UWPPc\":[\"Để hiển thị bản xem trước, mẫu hiện tại cần được thay thế trên máy chủ bằng các sửa đổi của bạn, điều này có thể làm hỏng nhãn nếu nó đang được sử dụng. Bạn có muốn tiếp tục không?\"],\"ckHR23\":[\"Lưu và Tải Lại\"],\"KMIjmd\":[\"Đã cập nhật xem trước\"],\"NyL8gD\":[\"Xem trước đã được cập nhật thành công.\"],\"ruaSzz\":[\"Save & Reload preview\"],\"TJRAGK\":[\"Tải lại xem trước \"],\"Imj0Wf\":[\"Sử dụng mẫu có sẵn trên máy chủ\"],\"+Vw6KN\":[\"Lưu mẫu hiện tại và tải lại xem trước\"],\"LuBSrw\":[\"to preview\"],\"zCB4kU\":[\"Select instance to preview\"],\"FepgSX\":[\"Lỗi hiển thị mẫu\"],\"AOPUbq\":[\"Lỗi người dùng\"],\"yuzYd9\":[\"Xảy ra lỗi người dùng\"],\"jUhHNc\":[\"Mã trạng thái\"],\"v2XJD+\":[\"Trở về trang chính\"],\"vYV5VB\":[\"Chưa được xác minh\"],\"5a3xiK\":[\"Vui lòng đăng nhập\"],\"boJlGf\":[\"Không tìm thấy trang\"],\"CcD0eu\":[\"Trang không tồn tại\"],\"JUwB5j\":[\"Từ chối phân quyền\"],\"H//rsn\":[\"Bạn không có quyền xem trang này\"],\"iSWuCp\":[\"Lỗi máy chủ\"],\"vB3crB\":[\"Xảy ra lỗi máy chủ\"],\"3X1ZLb\":[\"Lỗi form\"],\"rl7FGt\":[\"Form Errors Exist\"],\"nx/5z+\":[\"Lỗi nhập liệu\"],\"EkH9pt\":[\"Cập nhật\"],\"cnGeoo\":[\"Xóa\"],\"jCsNQS\":[\"Check your your input and try again.\"],\"rxWA39\":[\"Welcome back!\"],\"zM9Wd+\":[\"Login successfull\"],\"6cPKtu\":[\"Đăng nhập thành công\"],\"uKMMk4\":[\"Đăng nhập thành công\"],\"yfblq9\":[\"Mail delivery successfull\"],\"4GKuCs\":[\"Đăng nhập thất bại\"],\"tnaYa/\":[\"Kiểm tra đầu vào của bạn và thử lại.\"],\"XAIcYu\":[\"Thư đã được gửi đi thành công\"],\"R2JMfc\":[\"Kiểm tra hộp thư để nhận liên kết đăng nhập. Nếu bạn đã có tài khoản, bạn sẽ nhận một liên kết đăng nhập. Kiểm tra đồng thời thư mục spam.\"],\"MMJM0z\":[\"Gửi mail thất bại\"],\"zTZjMy\":[\"Hoặc tiếp tục với phương thức khác\"],\"7sNhEz\":[\"Tên người dùng\"],\"k1RkIL\":[\"Tên người dùng của bạn\"],\"8ZsakT\":[\"Mật khẩu\"],\"9TO8nT\":[\"Mật khẩu của bạn\"],\"XlWstl\":[\"I will use username and password\"],\"RfwZxd\":[\"Đặt lại mật khẩu\"],\"O3oNi5\":[\"Địa chỉ email\"],\"Wr5sDQ\":[\"Chúng tôi sẽ gửi bạn 1 liên kết để đăng nhập - nếu bạn đã đăng ký\"],\"7ZOmjI\":[\"Gửi email cho chúng tôi\"],\"vZk5Sm\":[\"Dùng tên đăng nhập và mật khẩu\"],\"ADVQ46\":[\"Đăng nhập\"],\"i/TzEU\":[\"Gửi email\"],\"lpIMne\":[\"Passwords do not match\"],\"EoCs7m\":[\"Đăng kí thành công\"],\"n2c6Ul\":[\"Vui xác nhận địa chỉ email của bạn để hoàn thành việc đăng ký\"],\"ccnxuA\":[\"Lỗi đầu vào\"],\"SxviKF\":[\"Check your input and try again. \"],\"kXXdWU\":[\"Sử dụng cho xác thực\"],\"NK5XEe\":[\"Lặp lại mật khẩu\"],\"R1OtIL\":[\"Lặp lại mật khẩu\"],\"fgLNSM\":[\"Đăng ký\"],\"IES56a\":[\"hoặc sử dụng SSO\"],\"Ai2U7L\":[\"Host\"],\"6YtxFj\":[\"Tên\"],\"yWMzcH\":[\"Không có ai ở đây...\"],\"UYWLpE\":[\"Thêm host\"],\"tfDRzk\":[\"Lưu lại\"],\"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\":[\"Máy chủ\"],\"eE0JZ4\":[\"Phiên bản\"],\"8XeFzA\":[\"Phiên bản API\"],\"ohUJJM\":[\"Plugins\"],\"RxzN1M\":[\"Enabled\"],\"E/QGRL\":[\"Disabled\"],\"3J7l5w\":[\"Worker\"],\"NnvXp5\":[\"Stopped\"],\"RiQMUh\":[\"Running\"],\"FMGfGf\":[\"Chưa chọn icon\"],\"b2vAoQ\":[\"Chưa có danh mục\"],\"YIix5Y\":[\"Tìm kiếm...\"],\"mkvLrG\":[\"Chọn danh mục\"],\"SpVrYn\":[\"Chọn gói\"],\"ak3DfO\":[[\"0\"],\" icons\"],\"A1taO8\":[\"Tìm kiếm\"],\"yQE2r9\":[\"Đang tải\"],\"AxPAXW\":[\"Không có kết quả nào được tìm thấy\"],\"cBQBGb\":[\"modelRenderer mục nhập bắt buộc cho bảng\"],\"zVD5Ip\":[\"Không mục nhập nào có sẵn\"],\"3GFHmF\":[\"Add new row\"],\"oDodff\":[\"Select image\"],\"sGeXL3\":[\"Ảnh thu nhỏ\"],\"fawxGh\":[\"Nhập theo hàng\"],\"SdvoV5\":[\"Vui lòng đợi trong khi dữ liệu được cập nhật\"],\"aydx5i\":[\"Xảy ra lỗi khi nhập dữ liệu\"],\"bo3Q/V\":[\"Sửa dữ liệu\"],\"f2AJjl\":[\"Xoá hàng\"],\"IqKCNQ\":[\"Hàng\"],\"H14AdY\":[\"Hàng\"],\"g3UF2V\":[\"Chấp nhận\"],\"nfagfM\":[\"Hợp lệ\"],\"p385PV\":[\"Lọc theo tình trạng xác thực\"],\"bD8I7O\":[\"Hoàn thành\"],\"ytCibL\":[\"Lọc theo trạng thái hoàn thành\"],\"Fgr3ay\":[\"Nhập các hàng đã chọn\"],\"6dO0jk\":[\"Đang xử lý dữ liệu\"],\"Vw8l6h\":[\"Có lỗi xảy ra\"],\"TJu1/1\":[\"Chọn cột hoặc để trống để bỏ qua trường này.\"],\"mT7k1w\":[\"Select a column from the data file\"],\"Wew5xr\":[\"Map data columns to database fields\"],\"TEAVx8\":[\"Imported Column Name\"],\"ojDp4A\":[\"Bỏ qua trường này\"],\"AHjxLx\":[\"Đang ánh xạ các cột vào các trường cơ sở dữ liệu\"],\"Y+Sfcf\":[\"Chấp nhận ánh xạ cột\"],\"3mVQ03\":[\"Trường cơ sở dữ liệu\"],\"Us9epU\":[\"Mô tả trường\"],\"qsUkVg\":[\"Cột nhập khẩu\"],\"aQ8swY\":[\"Giá trị mặc định\"],\"IQ3gAw\":[\"Tải file\"],\"KXVPhI\":[\"Ánh xạ cột\"],\"FhMhTR\":[\"Nhập dữ liệu\"],\"eHQfWJ\":[\"Truy cập dữ liệu\"],\"b8ESNU\":[\"Hoàn thành nhập dữ liệu\"],\"Lcq+IU\":[\"Cancel import session\"],\"4fgz8U\":[\"Nhập dữ liệu thành công\"],\"zdT9Dy\":[\"Dữ liệu đã được nhập thành công\"],\"yz7wBu\":[\"Đóng\"],\"SC1Cur\":[\"Trạng thái không xác định\"],\"+6NHN9\":[\"Phiên nhập có trạng thái không xác định\"],\"CTRRU5\":[\"Đang nhập dữ liệu\"],\"JT9Hk8\":[\"Nhập hồ sơ\"],\"drGZDS\":[\"Imported Rows\"],\"l1p940\":[\"Imported rows\"],\"0zpgxV\":[\"Options\"],\"3GmetT\":[\"Link custom barcode\"],\"heU0Hk\":[\"Chức năng mã vạch\"],\"mYTVOy\":[\"View Barcode\"],\"PuPuVa\":[\"Xem mã vạch\"],\"3Bbgw2\":[\"Liên kết mã vạch\"],\"utafdp\":[\"Liên kết mã vạch tùy chỉnh với mục này\"],\"AlfG1i\":[\"Gỡ bỏ mã vạch tùy chỉnh\"],\"ePK91l\":[\"Sửa\"],\"Qpg4KV\":[\"Chỉnh sửa mặt hàng\"],\"ZatbPe\":[\"Xoá mặt hàng\"],\"YJMNeo\":[\"Chờ\"],\"euc6Ns\":[\"Nhân bản\"],\"QXHPgY\":[\"Nhân bản hàng hóa\"],\"eelNjA\":[\"Scan barcode data here using barcode scanner\"],\"QcKPg2\":[\"Toggle color scheme\"],\"IvkbIT\":[\"Xem thêm\"],\"29VNqC\":[\"Lỗi không xác định\"],\"nlJhkA\":[\"An error occurred:\"],\"Qoq+GP\":[\"Read more\"],\"EdQY6l\":[\"Không\"],\"DVAy0b\":[\"Logo InvenTree\"],\"k/sb6z\":[\"Select language\"],\"cUyJH1\":[\"Thông tin này chỉ khả dụng với nhân viên\"],\"3TnJRX\":[\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\"],\"etqXdW\":[\"PLH\"],\"7UvbG+\":[\"Phiên bản InvenTree\"],\"DN+WU3\":[\"Your InvenTree version status is\"],\"w4AvPz\":[\"Phiên bản Python\"],\"g27hpz\":[\"Phiên bản Django\"],\"wh0+YJ\":[\"Commit Hash\"],\"26rItp\":[\"Ngày commit\"],\"2dP9Tz\":[\"Nhánh commit\"],\"/4WpyD\":[\"Thông tin phiên bản\"],\"Rj01Fz\":[\"Liên kết\"],\"TvY/XA\":[\"Tài liệu\"],\"PnzsrT\":[\"Source Code\"],\"lDIOek\":[\"Đóng góp\"],\"gI5gJF\":[\"Ứng dụng di động\"],\"f43Mpl\":[\"Gửi báo cáo lỗi\"],\"28DkqT\":[\"InvenTree Documentation\"],\"Fh6/a1\":[\"View Code on GitHub\"],\"Z3HrI+\":[\"Sao chép thông tin phiên bản\"],\"1QfxQT\":[\"Dismiss\"],\"Hz3dBg\":[\"Phiên bản phát triển\"],\"DS7OAx\":[\"Mới nhất\"],\"YXMY4w\":[\"Có bản cập nhật mới\"],\"4JhzII\":[\"Không có văn bản giấy phép nào có sẵn\"],\"fSZVIc\":[\"Không có thông tin nào được cung cấp - đây có thể là sự cố máy chủ\"],\"7CwvjQ\":[\"Đang tải thông tin giấy phép\"],\"NIRUL8\":[\"Không thể lấy thông tin giấy phép\"],\"7IJNlG\":[[\"key\"],\" Gói\"],\"GU7xAr\":[\"Unknown response\"],\"3164SS\":[\"No scans yet!\"],\"RWw9Lg\":[\"Close modal\"],\"CIEoqM\":[\"Tên thực thể\"],\"vmmz7E\":[\"Phiên bản máy chủ\"],\"O4PAXt\":[\"Bebug Mode\"],\"JY5Oyv\":[\"Cơ sở dữ liệu\"],\"gri3Lv\":[\"Chế độ gỡ lỗi\"],\"odYm26\":[\"Máy chủ đang hoạt động dưới chế độ gỡ lỗi\"],\"QS5AeO\":[\"Chế độ Docker\"],\"ld9FQa\":[\"Máy chủ được triển khai bởi docker\"],\"16gOdK\":[\"Hỗ trợ phần bổ sung\"],\"GhZ9CI\":[\"Hỗ trợ phần bổ sung đã bật\"],\"VL9bCO\":[\"Hỗ trợ phần bổ sung đã tắt\"],\"/yfSe4\":[\"Tình trạng máy chủ\"],\"yGS9cI\":[\"Sức khỏe\"],\"IueqnF\":[\"Đã phát hiện vấn đề\"],\"/XqPnF\":[\"Nhân công chạy ngầm\"],\"Oe/dvo\":[\"Nhân công chạy ngầm không hoạt động\"],\"G5zNMX\":[\"Thiết lập email\"],\"QFMozt\":[\"Chưa cấu hình thiết lập email\"],\"+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\":[\"Thông báo\"],\"s4BX3A\":[\"Alerts\"],\"cNfZ4r\":[\"Không tìm thấy...\"],\"vERlcd\":[\"Profile\"],\"Tz0i8g\":[\"Cài đặt\"],\"Puv7+X\":[\"Cài đặt tài khoản\"],\"T3FM0r\":[\"Account settings\"],\"zNkWa6\":[\"Thiết lập hệ thống\"],\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":[\"Switch to pseudo language\"],\"uTLn08\":[\"Trung tâm quản trị\"],\"nOhz3x\":[\"Đăng xuất\"],\"N6Pxr9\":[\"View all\"],\"ZDIydz\":[\"Get started\"],\"BQDL+H\":[\"Overview over high-level objects, functions and possible usecases.\"],\"wRR604\":[\"Pages\"],\"pmRbKZ\":[\"Phụ tùng\"],\"blbbPS\":[\"Kho hàng\"],\"3ctapx\":[\"Manufacturing\"],\"UOTpFa\":[\"Mua sắm\"],\"mUv9U4\":[\"Bán hàng\"],\"Sxm8rQ\":[\"Người dùng\"],\"zhrjek\":[\"Nhóm\"],\"ekfzWq\":[\"User Settings\"],\"UxKoFf\":[\"Điều hướng\"],\"7L01XJ\":[\"Chức năng\"],\"uyJsf6\":[\"Giới thiệu\"],\"onllUU\":[\"Đánh dấu tất cả là đã đọc\"],\"/WA/tl\":[\"Xem tất cả thông báo\"],\"t2pqHO\":[\"Bạn chưa có thông báo mới.\"],\"FXAptz\":[\"No Overview Available\"],\"RPZ4Cq\":[\"No overview available for this model type\"],\"XN9Er0\":[\"View all results\"],\"mO8KLE\":[\"kết quả\"],\"8OvYje\":[\"Remove search group\"],\"9RecCt\":[\"Nhà cung cấp\"],\"E0ub4Q\":[\"Nhà sản xuất\"],\"NihQNk\":[\"Khách hàng\"],\"Ev2r9A\":[\"No results\"],\"Dwt0g3\":[\"Nhập văn bản tìm kiếm\"],\"C0TDNl\":[\"Refresh search results\"],\"9UYKcs\":[\"Tùy chọn tìm kiếm\"],\"qkCZlJ\":[\"Tìm kiếm regex\"],\"roauu/\":[\"Tìm phù hợp toàn bộ từ\"],\"hJCuaV\":[\"Lỗi trong quá trình truy vấn tìm kiếm\"],\"MA3x23\":[\"No Results\"],\"dTtbrX\":[\"Không có kết quả nào được tìm thấy với truy vấn tìm kiếm\"],\"w/Sphq\":[\"Đính kèm\"],\"1DBGsz\":[\"Ghi chú\"],\"px+tn2\":[\"Locate Item\"],\"AXn3rz\":[\"Item location requested\"],\"nNlKYH\":[\"Plugin Inactive\"],\"xwdvWr\":[\"Plugin is not active\"],\"5HArLW\":[\"Plugin Information\"],\"Nu4oKW\":[\"Mô tả\"],\"VbeIOx\":[\"Author\"],\"mYGY3B\":[\"Ngày\"],\"F6pfE9\":[\"Hoạt động\"],\"/L+cAM\":[\"Package Name\"],\"AJd5vK\":[\"Installation Path\"],\"++LBSt\":[\"Gắn liền\"],\"mGYa19\":[\"Package\"],\"eKHY3W\":[\"Thiết lập phần bổ sung\"],\"BFm1Jm\":[\"Cấu hình plugin\"],\"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\":[\"Phụ kiện\"],\"hAddRl\":[\"Mẫu tham số phụ kiện\"],\"UrnQgP\":[\"Mẫu tham số phụ kiện\"],\"75lDy5\":[\"Mẫu thử nghiệm\"],\"KevMsQ\":[\"Mẫu thử nghiệm\"],\"nne72x\":[\"Phụ kiện nhà cung cấp\"],\"FcNRrt\":[\"Nhà cung cấp phụ kiện\"],\"bisS0I\":[\"Phụ kiện nhà sản xuất\"],\"d0fBfb\":[\"Nhà sản xuất phụ kiện\"],\"QXANxH\":[\"Danh mục phụ kiện\"],\"2GkbLI\":[\"Danh mục phụ kiện\"],\"igx8Og\":[\"Hàng trong kho\"],\"Jbck4N\":[\"Hàng trong kho\"],\"adXdas\":[\"Vị trí kho hàng\"],\"1eBWAw\":[\"Vị trí kho hàng\"],\"DjwC2f\":[\"Phân loại vị trí kho hàng\"],\"vkPSyZ\":[\"Phân loại vị trí kho hàng\"],\"cE4TWF\":[\"Lịch sử kho hàng\"],\"rewkgt\":[\"Lịch sử kho hàng\"],\"iSiFYa\":[\"Xây dựng\"],\"3400Lv\":[\"Bản dựng\"],\"9TLpo1\":[\"Xây dựng line mặt hàng\"],\"CRYIQ0\":[\"Xây dựng line mặt hàng\"],\"LN2ON5\":[\"Xây dựng mặt hàng\"],\"A7FuwR\":[\"Xây dựng mặt hàng\"],\"7i8j3G\":[\"Công ty\"],\"s2QZS6\":[\"Doanh nghiệp\"],\"Sdfr6G\":[\"Mã dự án\"],\"AklCpf\":[\"Mã dự án\"],\"KxySMG\":[\"Đơn đặt mua\"],\"85Yvr2\":[\"Đơn hàng mua\"],\"Enr0Pf\":[\"Các dòng đơn đặt hàng\"],\"MXjnQS\":[\"Các dòng đơn đặt hàng\"],\"LozYBo\":[\"Đơn đặt bán\"],\"B1TL+X\":[\"Đơn hàng bán\"],\"qGSobR\":[\"Vận chuyển đơn hàng\"],\"D/EkfS\":[\"Vận chuyển đơn hàng\"],\"Z6ve1w\":[\"Đơn hàng trả lại\"],\"LlTg8M\":[\"Đơn hàng trả lại\"],\"Frsz7D\":[\"Đơn hàng trả lại\"],\"4dCpFa\":[\"Đơn hàng trả lại\"],\"Du6bPw\":[\"Địa chỉ\"],\"bYmAV1\":[\"Địa chỉ\"],\"jfC/xh\":[\"Liên hệ\"],\"gVfVfe\":[\"Danh bạ\"],\"LtI9AS\":[\"Chủ sở hữu\"],\"CYRJEX\":[\"Chủ sở hữu\"],\"7PzzBU\":[\"Người dùng\"],\"L8fEEm\":[\"Nhóm\"],\"e5WBGh\":[\"Phiên làm việc\"],\"1dn8uK\":[\"Nhập phiên làm việc\"],\"WT825B\":[\"Purchase Order Line Item\"],\"aKf3M5\":[\"Mẫu nhãn tem\"],\"0qHiFS\":[\"Mẫu nhãn tem\"],\"F/A+39\":[\"Mẫu báo cáo\"],\"SX006I\":[\"Mẫu báo cáo\"],\"7ybWp/\":[\"Cấu hình plugin\"],\"f9cDxV\":[\"Loại Nội Dung\"],\"F7Jcuy\":[\"Loại Nội Dung\"],\"tTUob1\":[\"Unknown Model\"],\"ifEZiy\":[\"Selection List\"],\"2q2/qs\":[\"Selection Lists\"],\"UirGxE\":[\"Errors\"],\"hN+9ZV\":[\"Purchase Order Line Items\"],\"rk/y41\":[\"Unknown Models\"],\"4fws5M\":[\"Lô hàng\"],\"NoNwIX\":[\"Không hoạt động\"],\"AbC1Px\":[\"Hết hàng\"],\"AXeJt4\":[\"Số sê-ri\"],\"VbWX2u\":[\"Số lượng\"],\"rsx3xA\":[\"Batch\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"mjN1LS\":[\"Sửa thiết lập\"],\"1onc6y\":[\"Setting \",[\"key\"],\" updated successfully\"],\"C3htzi\":[\"Cài đặt đã được cập nhật\"],\"n/n6vh\":[\"Cấu hình \",[\"0\"],\" được cập nhật thành công\"],\"CsUgn+\":[\"Lỗi sửa thiết lập\"],\"3CUVvD\":[\"Không có cấu hình cụ thể\"],\"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\":[\"Đã tạo sản phẩm nhà cung cấp\"],\"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\":[\"Tiếng Ả Rập\"],\"KhEBDR\":[\"Bulgarian\"],\"w9VTXG\":[\"Czech\"],\"Fo2vDn\":[\"Danish\"],\"DDcvSo\":[\"German\"],\"CZXzs4\":[\"Greek\"],\"lYGfRP\":[\"English\"],\"65A04M\":[\"Spanish\"],\"xB5BGV\":[\"Spanish (Mexican)\"],\"l2pzUk\":[\"Tiếng Estonia\"],\"A64kM8\":[\"Farsi / Persian\"],\"USZ2N6\":[\"Finnish\"],\"nLC6tu\":[\"French\"],\"3oTCgM\":[\"Hebrew\"],\"tGjibo\":[\"Hindi\"],\"mkWad2\":[\"Hungarian\"],\"Lj7sBL\":[\"Italian\"],\"dFtidv\":[\"Japanese\"],\"h6S9Yz\":[\"Korean\"],\"Ot2qtY\":[\"Lithuanian\"],\"/0YsGP\":[\"Tiếng Latvia\"],\"KIjvtr\":[\"Dutch\"],\"1IipHp\":[\"Norwegian\"],\"trnWaw\":[\"Polish\"],\"MOERNx\":[\"Portuguese\"],\"KCh9+J\":[\"Portuguese (Brazilian)\"],\"uJc01W\":[\"Tiếng Ru-ma-ni\"],\"nji0/X\":[\"Russian\"],\"paESr6\":[\"Tiếng Slo-va-ki-a\"],\"LSdcWW\":[\"Slovenian\"],\"9aBtdW\":[\"Serbian\"],\"UaISq3\":[\"Swedish\"],\"SUr44j\":[\"Thai\"],\"Kz91g/\":[\"Turkish\"],\"V9+2pH\":[\"Tiếng U-crai-na\"],\"fROFIL\":[\"Tiếng Việt\"],\"6imsQS\":[\"Chinese (Simplified)\"],\"DM4gBB\":[\"Chinese (Traditional)\"],\"i0qMbr\":[\"Home\"],\"kwda2l\":[\"Về dasboard\"],\"hqbo9J\":[\"Truy cập tài liệu để tìm hiểu thêm về InvenTree\"],\"iDxamh\":[\"Giới thiệu\"],\"Q5S3DY\":[\"About this Inventree instance\"],\"gfhzPz\":[\"Giới thiệu InvenTree org\"],\"mHGdhG\":[\"Thông tin máy chủ\"],\"Ckl0UI\":[\"About this InvenTree instance\"],\"I/Xnkt\":[\"Thông tin giấy phép\"],\"L23uA9\":[\"Giấy phép dịch vụ phụ thuộc\"],\"rmlxV1\":[\"Mở điều hướng\"],\"xIiHCw\":[\"Mở menu điều hướng chính\"],\"9j/kJy\":[\"Scan a barcode or QR code\"],\"txYotp\":[\"Đi đến Trung tâm quản trị\"],\"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\":[\"Tài liệu InvenTree API\"],\"BOAupq\":[\"Sổ tay lập trình\"],\"kUcL4g\":[\"Sổ tay lập trình InvenTree\"],\"/lDBHm\":[\"Câu hỏi thường gặp\"],\"a3pVqb\":[\"Câu hỏi thường gặp\"],\"52Z0/R\":[\"GitHub Repository\"],\"IRQJed\":[\"InvenTree source code on GitHub\"],\"tBjIo1\":[\"Licenses for packages used by InvenTree\"],\"yPiRbD\":[\"Thông tin hệ thống\"],\"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\":[\"Trạng thái\"],\"0iR9fu\":[\"Hoàn thành xây dựng đầu ra\"],\"N3avUJ\":[\"Xây dựng đầu ra đã hoàn thành\"],\"69qbY/\":[\"Loại bỏ xây dựng đầu ra\"],\"C+tSd4\":[\"Xây dựng đầu ra đã bị hủy bỏ\"],\"duNUx4\":[\"Selected build outputs will be deleted\"],\"xS5DxW\":[\"Loại bỏ xây dựng đầu ra\"],\"cdFWk4\":[\"Xây dựng đầu ra đã bị hủy\"],\"A9JO1q\":[\"Remove line\"],\"A/ybx7\":[\"Allocated\"],\"/00Ond\":[\"Vị trí nguồn cung\"],\"IArqwk\":[\"Select the source location for the stock allocation\"],\"L1LMmH\":[\"Phân kho\"],\"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\":[\"Danh mục phụ kiện cha\"],\"8Qu8gC\":[\"Subscribe to notifications for this category\"],\"W778m0\":[\"Assign Batch Code and Serial Numbers\"],\"K5pQC8\":[\"Assign Batch Code\"],\"RL9/J8\":[\"Chọn vị trí\"],\"LNKjyK\":[\"Đã chọn đích đến của mặt hàng\"],\"q3WAIO\":[\"Vị trí mặc định danh mục đã được chọn\"],\"K1Mf+T\":[\"Vị trí kho hàng nhận đã được chọn\"],\"ALFlH9\":[\"Vị trí mặc định đã chọn\"],\"G8Z9OY\":[\"Assign Batch Code\",[\"0\"]],\"zMFs5V\":[\"Remove item from list\"],\"TJYLHZ\":[\"Cài đặt vị trí\"],\"okjJiB\":[\"Set Expiry Date\"],\"O7MZ1G\":[\"Điều chỉnh bao bì\"],\"Gt4cm5\":[\"Thay đổi trạng thái\"],\"nxv8yE\":[\"Thêm ghi chú\"],\"wJijgU\":[\"Vị trí\"],\"GFtCDL\":[\"Serial numbers\"],\"j9qXAA\":[\"Cửa hàng ở vị trí mặc định\"],\"Co8OYS\":[\"Store at line item destination \"],\"NOgnJu\":[\"Store at line item destination\"],\"CKgjtC\":[\"Cửa hàng đã nhận hàng\"],\"Vea6Aj\":[\"Mã lô hàng\"],\"s848yO\":[\"Enter batch code for received items\"],\"VzQT2x\":[\"Số sê-ri\"],\"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\":[\"Đóng gói\"],\"KiJn9B\":[\"Ghi chú\"],\"y90mqQ\":[\"SKU\"],\"fZ5Vnu\":[\"Đã nhận\"],\"MXlhj9\":[\"Nhận hạng mục\"],\"zFmwOr\":[\"Items received\"],\"iwAbO1\":[\"Receive Items\"],\"9U/ZsL\":[\"Item received into stock\"],\"iAY2dt\":[\"Next batch code\"],\"TVYdHj\":[\"Số seri kế tiếp\"],\"4xXnZr\":[\"Create Stock Item\"],\"qyS7x9\":[\"Thêm số lượng đã có theo gói thay vì các mục đơn lẻ\"],\"gqrPgW\":[\"Stock item updated\"],\"LWFE8j\":[\"Nhập số lượng khởi đầu cho kho hàng này\"],\"0dR85g\":[\"Điền số sê-ri cho kho mới (hoặc để trống)\"],\"Y3/0dR\":[\"Trạng thái kho\"],\"bJLEQT\":[\"Thêm mặt hàng trong kho\"],\"B+pzHp\":[\"Select the part to install\"],\"AEaskR\":[\"Confirm Stock Transfer\"],\"Z3FXyt\":[\"Đang tải...\"],\"b+SPUR\":[\"Đến vị trí mặc định\"],\"QWdKwH\":[\"Di chuyển\"],\"zn38D/\":[\"Còn hàng\"],\"m16xKo\":[\"Thêm\"],\"wBMjJ2\":[\"Đếm\"],\"smUxso\":[\"Thêm kho\"],\"2kGS2K\":[\"Stock added\"],\"dxvf6V\":[\"Xoá kho\"],\"uMaw0F\":[\"Stock removed\"],\"9efe+k\":[\"Chuyển kho\"],\"02r6MH\":[\"Stock transferred\"],\"n/p2QJ\":[\"Kiểm kê\"],\"iEFfQA\":[\"Stock counted\"],\"Y+vtBl\":[\"Đổi trạng thái kho\"],\"dbA8fL\":[\"Stock status changed\"],\"z5kN6j\":[\"Gộp kho\"],\"BSKV/s\":[\"Stock merged\"],\"i2FExn\":[\"Assign Stock to Customer\"],\"zTh3Rb\":[\"Stock assigned to customer\"],\"khKVoc\":[\"Xóa mặt hàng trong kho\"],\"9Y/rsA\":[\"Stock deleted\"],\"9P2CtI\":[\"Vị trí kho lớn\"],\"ef6vAZ\":[\"Entries\"],\"f/qYPq\":[\"List of entries to choose from\"],\"wMHvYH\":[\"Giá trị\"],\"87a/t/\":[\"Label\"],\"UFBeQV\":[\"Yêu cầu không hợp lệ\"],\"dA/8If\":[\"Chưa cấp quyền\"],\"7JBW66\":[\"Bị cấm\"],\"KPx1UV\":[\"Không tìm thấy\"],\"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\":[\"Đã đăng xuất\"],\"DMjmJd\":[\"Đăng xuất thành công\"],\"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\":[\"Kiểm tra hộp thư để lấy liên kết đặt lại. Việc này chỉ có tác dụng khi bạn có tài khoản. Cần kiểm tra thư mục Spam/Junk.\"],\"WhimMi\":[\"Thiết lập lại thất bại\"],\"bNsW3s\":[\"Đã đăng nhập\"],\"IBfR77\":[\"Đăng nhập thành công.\"],\"Ov7CoV\":[\"Failed to set up MFA\"],\"Hw2MHB\":[\"Đã đặt mật khẩu\"],\"+p8fKY\":[\"Mật khẩu đã được đặt mới thành công. Bạn có thể đăng nhập bằng mật khẩu mới\"],\"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\":[\"Chưa triển khai\"],\"WvSApV\":[\"Tính năng này vẫn chưa được triển khai\"],\"sJK6pq\":[\"Permission denied\"],\"3WjGlZ\":[\"Bạn không có quyền thực hiện hành động này\"],\"J7PX+R\":[\"Mã trả hàng không hợp lệ\"],\"78bD8l\":[\"Mã phản hồi của máy chủ \",[\"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\":[\"Mặt hàng đã được tạo\"],\"36MpJH\":[\"Mặt hàng đã được cập nhật\"],\"GsfE+I\":[\"Items Updated\"],\"rmhQEk\":[\"Update multiple items\"],\"lUQRkn\":[\"Đã xóa mặt hàng\"],\"XtpCjZ\":[\"Bạn có chắc chắn muốn xóa đối tượng này?\"],\"S1C0yM\":[\"Số seri mới nhất\"],\"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\":[\"Đang kiểm tra trạng thái đăng nhập của bạn\"],\"bX1aQ5\":[\"Không có lựa chọn\"],\"BL4vL0\":[\"Welcome, log in below\"],\"qJ5FUT\":[\"Register below\"],\"z0t9bb\":[\"Đăng nhập\"],\"wIGnZX\":[\"Logging you in\"],\"ln9/n9\":[\"Chưa có tài khoản?\"],\"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\":[\"Về trang đăng nhập\"],\"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\":[\"Đặt mật khẩu mới\"],\"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\":[\"Lỗi: \",[\"0\"]],\"MVDSZK\":[\"Đã xảy ra lỗi không mong muốn.\"],\"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\":[\"Chọn phần tử chưa được biết đến\"],\"Oik3bo\":[\"Đã chọn nhiều loại đối tượng\"],\"oGDiXN\":[\"Actions ...\"],\"9dx+P4\":[\"Actions ... \"],\"kSFUZe\":[\"Barcode Scanning\"],\"n5kv5D\":[\"Barcode Input\"],\"bwRvnp\":[\"Thao tác\"],\"65vtJ8\":[\"No Items Selected\"],\"pS7MTY\":[\"Manual input\"],\"mB/UHi\":[\"Scan and select items to perform actions\"],\"29Om2/\":[\"Image Barcode\"],\"sQhVFe\":[\"đã chọn \",[\"0\"],\" mục\"],\"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\":[\"Không kích hoạt\"],\"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\":[\"Địa chỉ email sau đã được liên kết với tài khoản của bạn:\"],\"T/R+Qz\":[\"Chính\"],\"QDEWii\":[\"Đã xác minh\"],\"VBTGXl\":[\"Chưa xác minh\"],\"g/Kbij\":[\"Chọn mặc định\"],\"+GoJJW\":[\"Gửi lại xác minh\"],\"oLztc+\":[\"Thêm địa chỉ email\"],\"Y/cuRF\":[\"Email\"],\"JqLqpm\":[\"Địa chỉ Email\"],\"/NCeM2\":[\"Error while adding email\"],\"0+CYPj\":[\"Thêm 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\":[\"Cài đặt hiển thị\"],\"M46ISI\":[\"bars\"],\"Ai6veK\":[\"oval\"],\"8zGXnJ\":[\"dots\"],\"vXIe7J\":[\"Ngôn ngữ\"],\"PsXasD\":[\"Sử dụng ngôn ngữ pseudo\"],\"FEr96N\":[\"Theme\"],\"FpsvqB\":[\"Chế độ màu sắc\"],\"QFd2P1\":[\"Primary color\"],\"ca2AYV\":[\"Highlight color\"],\"HmI5oK\":[\"Example\"],\"160vo+\":[\"Màu trắng\"],\"u01284\":[\"Màu đen\"],\"bjp1xg\":[\"Bo viền\"],\"EBeoY+\":[\"Thanh tải\"],\"yIoFdU\":[\"Bars\"],\"NAZGMM\":[\"Oval\"],\"2AXZa8\":[\"Dots\"],\"cQf1Ay\":[\"Reauthentication\"],\"zga9sT\":[\"OK\"],\"JBPRnC\":[\"Advanced Amininistrative Options for InvenTree\"],\"Q2lUR2\":[\"Tiền tệ\"],\"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\":[\"Nhập dữ liệu\"],\"9PDJnO\":[\"Data Export\"],\"iTylMl\":[\"Templates\"],\"/uOXnx\":[\"Barcode Scans\"],\"Lj612C\":[\"Tác vụ Chạy nền\"],\"xlfzMJ\":[\"Báo cáo lỗi\"],\"W9narx\":[\"Tiền tệ\"],\"/3MMGZ\":[\"Tuỳ chọn states\"],\"mSx90B\":[\"Location types\"],\"h0kQrk\":[\"Tuỳ chọn đơn vị\"],\"TxrNvj\":[\"Tham số phụ kiện\"],\"6r/kUX\":[\"Thông số danh mục\"],\"d5IWFK\":[\"Kiểm kê\"],\"HVuv+Z\":[\"Loại vị trí\"],\"Qf5DYN\":[\"Máy móc\"],\"UDMjsP\":[\"Quick Actions\"],\"zYSRQY\":[\"Add a new user\"],\"NFIOKv\":[\"Tùy chọn Nâng cao\"],\"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\":[\"Thông tin\"],\"9/VxeC\":[\"Plugin Error Stack\"],\"TQfvsk\":[\"Phần bổ sung bên ngoài chưa được bật cho cài đặt.\"],\"r6y+jM\":[\"Warning\"],\"LE9XU9\":[\"Changing the settings below require you to immediately restart the server. Do not change this while under active usage.\"],\"VvzkAV\":[\"Lỗi plugins\"],\"zDhL7c\":[\"Page Size\"],\"XxIeKn\":[\"Landscape\"],\"F4rFGE\":[\"Attach to Model\"],\"Jo97/n\":[\"Generated Reports\"],\"mKZc+g\":[\"Stocktake Reports\"],\"HkhyUV\":[\"Dịch vụ quản lý tác vụ nền không chạy. Hãy liên hệ với quản trị viên hệ thống của bạn.\"],\"tA0cy1\":[\"Background Worker Not Running\"],\"sOEpG4\":[\"Tác vụ chờ xử lý\"],\"8OiyFS\":[\"Tác vụ theo lịch\"],\"DJ8M4D\":[\"Tác vụ thất bại\"],\"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\":[\"Mã vạch\"],\"Uox1LM\":[\"Bảng điều khiển này là dự kiến.\"],\"+aCQna\":[\"Physical Units\"],\"aHCEmh\":[\"Giá bán\"],\"kUZvR6\":[\"Exchange Rates\"],\"h8DugX\":[\"Nhãn\"],\"ApEshE\":[\"Báo cáo\"],\"RCVhIP\":[\"Đơn đặt bản dựng\"],\"rXda+w\":[\"Switch to User Setting\"],\"AeXO77\":[\"Tài khoản\"],\"a3LDKx\":[\"Bảo mật\"],\"+4YDgS\":[\"Tùy chọn hiển thị\"],\"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\":[\"Lịch sử\"],\"5GPcf9\":[\"Đánh dấu chưa đọc\"],\"j3/C3X\":[\"Delete notifications\"],\"kXDwva\":[\"Build Status\"],\"3wXEsN\":[\"IPN\"],\"6LTyxl\":[\"Sửa đổi\"],\"4DvUAJ\":[\"Custom Status\"],\"N2C89m\":[\"Tham chiếu\"],\"jqsG41\":[\"Phiên bản cha\"],\"Ee+3kG\":[\"Số lượng đơn vị\"],\"Mzv4va\":[\"Đầu ra hoàn thiện\"],\"kmUN8p\":[\"Cấp bởi\"],\"VSd7DB\":[\"View part barcode\"],\"XQACoK\":[\"Chịu trách nhiệm\"],\"ILmSgE\":[\"Link custom barcode to part\"],\"+UKDx2\":[\"Unlink custom barcode from part\"],\"JWtsrK\":[\"Build Order updated\"],\"aZD9Yv\":[\"Vị trí bất kỳ\"],\"o35LCI\":[\"Địa điểm đích\"],\"imB4Wr\":[\"Edit build order\"],\"BmclYe\":[\"Duplicate build order\"],\"d+F6q9\":[\"Đã tạo\"],\"ltuPrj\":[\"Delete build order\"],\"D3iCkb\":[\"Start Date\"],\"ZmykKo\":[\"Ngày mục tiêu\"],\"qqWcBV\":[\"Đã hoàn thành\"],\"98Q4bz\":[\"Chi tiết bản dựng\"],\"SgduFH\":[\"Dòng hàng hóa\"],\"E9en8O\":[\"Đầu ra chưa hoàn hiện\"],\"MD2yP5\":[\"Kho hàng đã phân bổ\"],\"US3GCq\":[\"Kho tiêu thụ\"],\"YlY+VD\":[\"Test Statistics\"],\"CVlgqS\":[\"Đơn đặt bản dựng con\"],\"isbwWo\":[\"Kết quả kiểm tra\"],\"Tyj32s\":[\"Reporting Actions\"],\"V7w5fl\":[\"Print build report\"],\"B7ynKf\":[\"Sửa đơn đặt bản dựng\"],\"59jtLx\":[\"Tạo đơn đặt bản dựng\"],\"MTYJu1\":[\"Hủy đơn đặt bản dựng\"],\"H5qWhm\":[\"Đã huỷ giao dịch\"],\"MPFqR0\":[\"Hủy đơn hàng này\"],\"hZIvSn\":[\"Chuyển trạng thái chờ đơn đặt bản dựng\"],\"3Wfk51\":[\"Chuyển đơn hàng sang trạng thái chờ\"],\"0NH/ob\":[\"Đơn hàng đã chuyển sang chờ\"],\"Z4Rl+B\":[\"Xác nhận\"],\"lLiNZC\":[\"Xác nhận\"],\"R/WvFK\":[\"Đã xác nhận\"],\"Q/TP3B\":[\"Hoàn thành\"],\"DYITap\":[\"Đánh dấu hoàn thành\"],\"W7TghJ\":[\"Hoàn thành\"],\"WajCDs\":[\"Xác nhận\"],\"NPZqBL\":[\"Hoàn thành\"],\"tDgG1Y\":[\"Thao tác đơn đặt bản dựng\"],\"mVeaUg\":[\"Chỉnh sửa đơn hàng\"],\"oi/3Pq\":[\"Nhân bản đơn hàng\"],\"20mLBC\":[\"Giữ đơn hàng\"],\"tVJk4q\":[\"Hủy đơn hàng\"],\"YxwWvi\":[\"Xây dựng đơn hàng\"],\"x1gTgF\":[\"Build order created\"],\"bwuG2V\":[\"New Build Order\"],\"8x9Qq9\":[\"Table View\"],\"nhn/TI\":[\"Calendar View\"],\"On0aF2\":[\"Trang web\"],\"HF6C2L\":[\"Số điện thoại\"],\"hzKQCy\":[\"Địa chỉ email\"],\"xjO9oI\":[\"Tiền tệ mặc định\"],\"PYTEl0\":[\"Nhà cung cấp\"],\"+m9/3S\":[\"Nhà sản xuất\"],\"876pfE\":[\"Khách hàng\"],\"eDkDvt\":[\"Company Details\"],\"EjxtPT\":[\"Edit company\"],\"i4b9ex\":[\"Nguyên liệu nhà cung cấp\"],\"glJbgw\":[\"Nguyên liệu nhà sản xuất\"],\"VBpmg6\":[\"Delete company\"],\"TVGEcl\":[\"Kho đã được giao\"],\"HoG6cl\":[\"Sửa doanh nghiệp\"],\"riHm27\":[\"Xóa doanh nghiệp\"],\"z+ZEYC\":[\"Chức năng doanh nghiệp\"],\"GNd5ad\":[\"Nguyên liệu nội bộ\"],\"ZCCuT2\":[\"Mã số nguyên liệu\"],\"0R4wMK\":[\"Liên kết Ngoài\"],\"sQRZ1+\":[\"Chi tiết\"],\"BCSxrX\":[\"Chi tiết\"],\"uN9giG\":[\"Chi tiết nguyên liệu\"],\"F18WP3\":[\"Thông số\"],\"b30yxS\":[\"Sửa\"],\"uOeMYf\":[\"Thêm\"],\"fMDrRl\":[\"Xoá\"],\"D/ppgk\":[\"Thao tác\"],\"WssheI\":[\"Nguyên liệu\"],\"5ZWiLz\":[\"Mô tả sản phẩm\"],\"J9LTXQ\":[\"Số lượng gói\"],\"0lg3zX\":[\"On Order\"],\"WrzEdW\":[\"Khả dụng\"],\"Qeo1xd\":[\"Đã cập nhật\"],\"lXkUEV\":[\"Khả dụng\"],\"F+J5VC\":[\"Chi tiết\"],\"b447qM\":[\"Kho đã nhận hàng\"],\"OQkyYP\":[\"Giá nhà cung cấp\"],\"XIY/fv\":[\"Thao tác\"],\"qZstuw\":[\"Sửa sản phẩm nhà cung cấp\"],\"9Qoago\":[\"Xoá\"],\"EREF+D\":[\"Thêm sản phẩm nhà cung cấp\"],\"COcNhC\":[\"Hết hàng\"],\"u6wzjB\":[\"System Overview\"],\"m6X3ro\":[\"Group Name\"],\"v7zrSW\":[\"Group Details\"],\"anfIXl\":[\"User Details\"],\"lej8Sf\":[\"Basic user\"],\"I6gXOa\":[\"Đường dẫn\"],\"o8hZ41\":[\"Danh mục cha\"],\"7lonqg\":[\"Phụ mục\"],\"PRKZBP\":[\"Cấu trúc\"],\"XLVNTv\":[\"Vị trí mặc định\"],\"QC5Msb\":[\"Vị trí mặc định\"],\"PFKWrQ\":[\"Danh mục top\"],\"7fjpj0\":[\"Sửa\"],\"y6iD6w\":[\"Move items to parent category\"],\"lzGbCT\":[\"Xoá\"],\"2tjyh5\":[\"Xoá\"],\"PJYQQn\":[\"Thao tác\"],\"ZqK0DP\":[\"Thao tác trong danh mục\"],\"QgH9YK\":[\"Thao tác\"],\"ISGGrw\":[\"Thao tác\"],\"O/o81A\":[\"Thao tác\"],\"wp9B4i\":[\"Chi tiết\"],\"KCpl4N\":[\"Phân bổ đơn hàng bản dựng\"],\"DaWMWw\":[\"Phân bổ đơn hàng bán\"],\"ji2aTl\":[\"Biến thể của\"],\"eYZfUh\":[\"Sửa đổi của\"],\"K7tIrx\":[\"Danh mục\"],\"xuaXgj\":[\"Vị trí mặc định\"],\"6uSImw\":[\"Vị trí danh mục mặc định\"],\"QrhaVg\":[\"Đơn vị\"],\"/n/HCO\":[\"Từ khóa\"],\"oGd3rK\":[\"Số hàng tồn\"],\"z6SfpV\":[\"Biến thể kho\"],\"3K8S+7\":[\"Kho tối thiểu\"],\"/MB+gl\":[\"Đang đặt hàng\"],\"xsXvog\":[\"Yêu cầu cho đơn hàng\"],\"hHWm3x\":[\"Đã phân bổ đơn hàng\"],\"I4qXcg\":[\"Đã phân bổ đơn hàng\"],\"zt/pSE\":[\"Edit part\"],\"S/9nwz\":[\"Có thể dựng\"],\"FFYpjf\":[\"Duplicate part\"],\"BE5Q6v\":[\"Đang sản xuất\"],\"metDDP\":[\"Delete part\"],\"G2fuEb\":[\"Khóa\"],\"0ceRuG\":[\"Nguyên liệu mẫu\"],\"+e3Z9N\":[\"Đã lắp ráp\"],\"kux4zT\":[\"Thành phần\"],\"I2bj4j\":[\"Có thể kiểm\"],\"SH3bOE\":[\"Có thể theo dõi\"],\"f9RadV\":[\"Có thể đặt\"],\"HqVuYd\":[\"Có thể bán\"],\"PF44mc\":[\"Nguyên liệu ảo\"],\"FNcMGM\":[\"Ngày tạo\"],\"egTba/\":[\"Tạo bởi\"],\"WpC0X0\":[\"Nhà cung ứng mặc định\"],\"YA4hwj\":[\"Khoảng giá\"],\"fL8nU5\":[\"Latest Serial Number\"],\"TF+TDw\":[\"Stocktake By\"],\"SDRhYQ\":[\"Biến thể\"],\"KwhnxF\":[\"Phân bổ\"],\"/637F4\":[\"Hóa đơn nguyên vật liệu\"],\"5M5Kdm\":[\"Sử dụng trong\"],\"//6AgL\":[\"Giá\"],\"DbZMYM\":[\"Lập lịch\"],\"eeXE8u\":[\"Mẫu thử nghiệm\"],\"AAoGm5\":[\"Phụ kiện liên quan\"],\"csDS2L\":[\"Có sẵn\"],\"TMLAx2\":[\"Bắt buộc\"],\"enG3o5\":[\"Sửa phụ kiện\"],\"rGfVOS\":[\"Thêm nguyên liệu\"],\"KTZNtu\":[\"Xoá nguyên liệu\"],\"DbBU6z\":[\"Không thể khôi phục việc xóa nguyên liệu này\"],\"bbA1t1\":[\"Thao tác kho\"],\"4Qpffa\":[\"Đếm kho nguyên liệu\"],\"tnr8CD\":[\"Chuyển kho nguyên liệu\"],\"UYUgdb\":[\"Order\"],\"cUzrZK\":[\"Order Stock\"],\"loB51L\":[\"Thao tác\"],\"NYlllY\":[\"Chọn lịch sử nguyên liệu\"],\"NUrY9o\":[\"Categories\"],\"YxrIF+\":[\"Không tồn tại giá cho nguyên liệu này\"],\"mnyfvF\":[\"Tóm lược định giá\"],\"HOEiBc\":[\"Lịch sử mua hàng\"],\"ZAcg+u\":[\"Định giá nội bộ\"],\"ZHKujT\":[\"Giá BOM\"],\"MIl406\":[\"Biến thể giá\"],\"uZut4M\":[\"Giá sale\"],\"pS6SBr\":[\"Lịch sử sale\"],\"mOFgdC\":[\"Tối đa\"],\"4ba0NE\":[\"Scheduled\"],\"CW11B+\":[\"Tối thiểu\"],\"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\":[\"Giá trị tối thiểu\"],\"0gIKWP\":[\"Giá trị tối đa\"],\"KyZVKD\":[\"Tổng tiền\"],\"dK3Z9j\":[\"Thành phần\"],\"G+Ulzz\":[\"Minimum Total Price\"],\"QYcUEf\":[\"Giá thấp nhất\"],\"rW4Gfm\":[\"Giá cao nhất\"],\"EbPCPS\":[\"Maximum Total Price\"],\"vWelsN\":[\"Đơn giá\"],\"+b7T3G\":[\"Đã cập nhật\"],\"3ubdv5\":[\"Biểu đồ tròn\"],\"LiFJll\":[\"Biểu đồ cột\"],\"SXdWxL\":[\"Thêm giảm giá\"],\"l3gpbq\":[\"Sửa giảm giá\"],\"ynVh1t\":[\"Xoá giảm giá\"],\"KOkNlr\":[\"Giảm giá\"],\"a7u1N9\":[\"Giá\"],\"aR8akj\":[\"Refreshing pricing data\"],\"hpQNRe\":[\"Pricing data updated\"],\"3bajOU\":[\"Failed to update pricing data\"],\"VEz9J8\":[\"Edit Pricing\"],\"+iQdL9\":[\"Danh mục giá\"],\"vzRtGZ\":[\"Ghi đè giá\"],\"mD5epu\":[\"Giá tổng thể\"],\"KOSX82\":[\"Giá mua\"],\"K7P0jz\":[\"Cập nhật lần cuối\"],\"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\":[\"Không có dữ liệu khả dụng\"],\"B6C0XJ\":[\"Không có dữ liệu\"],\"HzrBHA\":[\"Chưa có thông tin giá\"],\"p5/e49\":[\"Đang tải thông tin giá\"],\"zjncvE\":[\"Giá mua\"],\"VZWsKS\":[\"Sale Order\"],\"FW5e+C\":[\"Giá sale\"],\"kk1/TT\":[\"Giá nhà cung cấp\"],\"Tootjq\":[\"Biến thể nguyên liệu\"],\"lAF9Uk\":[\"Sửa đơn mua\"],\"XRoR1U\":[\"Thêm đơn mua\"],\"K7PVg3\":[\"Tham chiếu nhà cung cấp\"],\"9j2hXW\":[\"Order Currency,\"],\"qgs95u\":[\"Những mục hoàn thành\"],\"Enslfm\":[\"Đích đến\"],\"0UZTSq\":[\"Tiền tệ đơn hàng\"],\"A6C0pv\":[\"Tổng chi phí\"],\"x9P/+F\":[\"Created On\"],\"41BQ3k\":[\"Contact Email\"],\"P1x5uo\":[\"Contact Phone\"],\"M1cChr\":[\"Issue Date\"],\"41ha49\":[\"Completion Date\"],\"Tol4BF\":[\"Chi tiết đơn đặt\"],\"l11DG/\":[\"Thêm dòng mở rộng\"],\"keApR9\":[\"Xác nhận đơn hàng\"],\"98xQHK\":[\"Huỷ đơn hàng\"],\"vJaCK0\":[\"Tạm hoãn đơn hàng\"],\"CWbcdO\":[\"Hoàn thành đơn hàng\"],\"/IKytX\":[\"Chức năng đơn đặt\"],\"ZVUe1A\":[\"Tham chiếu khách hàng\"],\"INmUKx\":[\"Order canceled\"],\"RDcVR0\":[\"Sửa đơn hoàn\"],\"mpNlR/\":[\"Thêm đơn hoàn\"],\"LUGEsQ\":[\"Xác nhận đơn hoàn\"],\"qOAlIV\":[\"Huỷ đơn hoàn\"],\"Sd+hNf\":[\"Tạm hoãn đơn hoàn\"],\"yDIX54\":[\"Hoàn thành đơn hoàn\"],\"polrQd\":[\"Vận đơn đã hoàn thành\"],\"qC/FEC\":[\"Pending Shipments\"],\"nEK4wx\":[\"Sửa đơn hàng sale\"],\"VzdnWM\":[\"Thêm đơn hàng sale\"],\"aljM0q\":[\"Vận chuyển\"],\"Zk75Wf\":[\"Xác nhận đơn hàng sale\"],\"GYdhXE\":[\"Huỷ đơn hàng sale\"],\"Pgi6wT\":[\"Tạm hoãn đơn hàng sale\"],\"tMUAZW\":[\"Ship Sales Order\"],\"huukBM\":[\"Ship this order?\"],\"NloAZ8\":[\"Order shipped\"],\"O1h5Uc\":[\"Hoàn thành đơn hàng sale\"],\"7I7mfp\":[\"Thứ tự vận đơn\"],\"Dwgrby\":[\"Shipment Reference\"],\"sdy17V\":[\"Allocated Items\"],\"DTku8S\":[\"Tracking Number\"],\"MhyecB\":[\"Invoice Number\"],\"MFQxyA\":[\"Ngày giao hàng\"],\"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\":[\"Địa chỉ chính\"],\"L7/8CO\":[\"Địa chỉ phụ\"],\"bVhrVt\":[\"Bên ngoài\"],\"4sg5Qp\":[\"Loại vị trí\"],\"js9HzF\":[\"Vị trí kho tổng\"],\"AC8C/Z\":[\"Chi tiết địa điểm\"],\"D19W4x\":[\"Nguyên liệu mặc định\"],\"Qdjbg8\":[\"Sửa vị trí kho\"],\"+oqXDN\":[\"Move items to parent location\"],\"lnETLa\":[\"Xoá vị trí kho\"],\"j3pJx8\":[\"Thao tác items\"],\"Ml7+Iv\":[\"Thao tác cho kho tại vị trí này\"],\"+DlcAh\":[\"Thao tác cho vị trí phụ\"],\"CEDjmR\":[\"Thao tác cho vị trí phụ tại vị trí này\"],\"Ego4rz\":[\"Thao tác vị trí\"],\"mY+KgP\":[\"Sản phẩm cơ bản\"],\"JfqbtZ\":[\"Link custom barcode to stock item\"],\"Yo+Era\":[\"Completed Tests\"],\"MrzVmw\":[\"Unlink custom barcode from stock item\"],\"whZ7zT\":[\"Kiểm kê cuối cùng\"],\"8oSGoC\":[\"Allocated to Orders\"],\"RF496L\":[\"Edit stock item\"],\"227gwk\":[\"Delete stock item\"],\"QPoAhl\":[\"Nhập vào\"],\"0o0T0n\":[\"Parent Item\"],\"94QKKW\":[\"Parent stock item\"],\"H00rnl\":[\"Sử dụng bởi\"],\"KD3GYK\":[\"Duplicate stock item\"],\"hBG+yp\":[\"Chi tiết kho\"],\"IdrYoA\":[\"Theo dõi tồn kho\"],\"dljGeD\":[\"Thông tin kiểm thử\"],\"xnskHi\":[\"Mục đã cài đặt\"],\"K4v96J\":[\"Mục con\"],\"gQgYNs\":[\"Sửa hàng trong kho\"],\"BJoa27\":[\"Xoá kho 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\":[\"Hoạt động kho\"],\"rb0Klh\":[\"Đếm hàng\"],\"zPGNJm\":[\"Chuyển\"],\"Wlr+mY\":[\"Serialize\"],\"Vmnyam\":[\"Serialize stock\"],\"vUOn9d\":[\"Return\"],\"CwkTmH\":[\"Return from customer\"],\"7J5Eno\":[\"Assign to Customer\"],\"Ch8pZV\":[\"Assign to a customer\"],\"oPF3fX\":[\"Thao tác kho items\"],\"1ba70W\":[\"Stale\"],\"M1RnFv\":[\"Expired\"],\"jqzUyM\":[\"Unavailable\"],\"Bjsayx\":[\"Error loading icon package from server\"],\"TgUP31\":[\"Nguyên liệu chưa kích hoạt\"],\"Fe2KEj\":[\"Part is locked\"],\"6z/VRr\":[\"Nguyên liệu bị khoá\"],\"uB1bw/\":[\"You are subscribed to notifications for this part\"],\"47h3Cb\":[\"Không có vị trí được thiết lập\"],\"kCTFU8\":[\"Chọn cột\"],\"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\":[\"Phân công cho tôi\"],\"BnF3ID\":[\"Hiển thị đơn đặt phân công cho tôi\"],\"aimnwe\":[\"Nổi bật\"],\"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\":[\"Xoá bộ lọc\"],\"Fo55lj\":[\"Lựa chọn giá trị để lọc\"],\"Q//Mlp\":[\"Enter filter value\"],\"A63fc7\":[\"Select date value\"],\"hpMOSe\":[\"Chọn bộ lọc\"],\"o7J4JM\":[\"Bộ lọc\"],\"l34cnu\":[\"Bộ lọc bảng\"],\"PzFzS+\":[\"Thêm bộ lọc\"],\"J8ECgX\":[\"Xóa bộ lọc\"],\"EqGTpW\":[\"Không tìm thấy biểu ghi\"],\"H7mqmH\":[\"Failed to load table options\"],\"3o3AAs\":[\"Máy chủ trả chưa đúng dữ liệu\"],\"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\":[\"Xóa mục đã chọn\"],\"3kYcuM\":[\"Bạn muốn xóa các mục đã chọn?\"],\"U99rVM\":[\"This action cannot be undone\"],\"B7s1hd\":[\"Items deleted\"],\"NO2Qmx\":[\"Failed to delete items\"],\"VUTcDq\":[\"Custom table filters are active\"],\"QZQ+5V\":[\"Xóa bản ghi được chọn\"],\"8RYNR1\":[\"Làm mới dữ liệu\"],\"o3Zq/u\":[\"item-\",[\"idx\"]],\"UzBu4e\":[\"Upload Data\"],\"tCdfmU\":[\"BOM này đã được định nghĩa\"],\"vVRudK\":[\"Thông tin nguyên liệu\"],\"e8fwfT\":[\"Kho ngoài\"],\"XTe+lK\":[\"Bao gồm kho thay thế\"],\"LdvJ9e\":[\"Bao gồm kho biến thể\"],\"oZd08v\":[\"Đang dựng\"],\"odasNw\":[\"Thông tin kho\"],\"f/GbFw\":[\"Vật tư tiêu hao\"],\"9QNy8U\":[\"Không khả dụng\"],\"UWjHm9\":[\"Create BOM Item\"],\"1LYhEA\":[\"Show asssmbled items\"],\"LCdyP7\":[\"Hiển thị items có thể kiểm\"],\"GnQW79\":[\"Hiển thị items có thể theo dõi\"],\"yTd5+B\":[\"Hiện items đã lắp ráp\"],\"Dg4tQl\":[\"Hiện items còn trong kho\"],\"xfq4ym\":[\"Hiện items theo thứ tự\"],\"RqNith\":[\"Edit Bom Item\"],\"AT7M/M\":[\"Bom item updated\"],\"GuXjc5\":[\"Đã xác minh\"],\"37tHwV\":[\"Hiện items đã xác minh\"],\"0sZpQb\":[\"Được kế thừa\"],\"/8VvXe\":[\"Hiện items được kế thừa\"],\"dnCTyJ\":[\"Cho phép biến thể\"],\"IApw+H\":[\"Hiện items có biến thể con\"],\"1kk0o3\":[\"Delete Bom Item\"],\"ZrT5g0\":[\"Bom item deleted\"],\"LLAa/9\":[\"Tuỳ chọn\"],\"XHqrSv\":[\"Hiện items tuỳ chọn\"],\"+d9ARc\":[\"Are you sure you want to remove this BOM item?\"],\"tlXhbF\":[\"Validate BOM line\"],\"duCsZf\":[\"Vật tư tiêu hao\"],\"66RvWY\":[\"Hiện items tiêu hao\"],\"T43R5B\":[\"Có định giá\"],\"Aszrkt\":[\"Hiện items định giá\"],\"RdqEWx\":[\"Nhập dữ liệu BOM\"],\"vkMikt\":[\"Thêm BOM item\"],\"YElEbg\":[\"BOM item đã tạo\"],\"GfL3+x\":[\"Sửa BOM item\"],\"wykrCX\":[\"Đã cập nhật BOM item\"],\"XXHHcQ\":[\"Xoá BOM item\"],\"3o7Mfj\":[\"Đã xoá BOM item\"],\"vIkXF4\":[\"Xác minh BOM\"],\"mYOpu8\":[\"Bạn có muốn xác minh BOM?\"],\"RLCXzl\":[\"Đã xác minh BOM\"],\"i/1z0K\":[\"Đã xác minh item BOM\"],\"TQS5oB\":[\"Lỗi xác minh BOM item\"],\"aDkF9z\":[\"View BOM\"],\"rkutMO\":[\"Xác minh BOM line\"],\"Omvn40\":[\"Sửa vật tư thay thế\"],\"QQGDQY\":[\"Không thể sửa BOM, do nguyên liệu bị khoá\"],\"WL36Yh\":[\"Lắp ráp\"],\"v3oiP1\":[\"Hiện dây chuyền đang hoạt động\"],\"y6MnU0\":[\"Có thể theo dõi\"],\"pvl7N9\":[\"Show trackable assemblies\"],\"ML+087\":[\"Allocated to Output\"],\"mVVw+/\":[\"Show items allocated to a build output\"],\"/g9i/Z\":[\"Bao gồm các biến thể\"],\"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\":[\"Tệp không thể tải lên\"],\"p1w/D6\":[\"Upload Attachment\"],\"VHmXZm\":[\"Upload attachment\"],\"MVvhJ1\":[\"Edit Attachment\"],\"hZfPb3\":[\"Xóa tệp đính kèm\"],\"3QegpG\":[\"Is Link\"],\"r1FQZj\":[\"Show link attachments\"],\"JT83gz\":[\"Is File\"],\"5LI39K\":[\"Show file attachments\"],\"V8euYO\":[\"Thêm tệp đính kèm\"],\"DpV4ac\":[\"Thêm liên kết ngoại\"],\"32o8IC\":[\"Không tìm thấy tệp đính kèm\"],\"1cbxaa\":[\"Drag attachment file here to upload\"],\"HX5SVx\":[\"Hàng hóa\"],\"scu3wk\":[\"Model\"],\"8TMaZI\":[\"Timestamp\"],\"Go4fl6\":[\"View Item\"],\"pwb7Yo\":[\"Thêm hạng mục\"],\"vgosWS\":[\"Sửa hạng mục\"],\"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\":[\"Tuổi\"],\"5+87Pq\":[\"Thông báo\"],\"xDAtGP\":[\"Nội dụng tin nhắn\"],\"cwMTjO\":[\"Click to edit\"],\"T4+0qy\":[\"Edit parameter\"],\"iwRvX8\":[\"Add Part Parameter\"],\"ZqLOh/\":[\"Sửa tham số phụ kiện\"],\"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\":[\"Bao gồm danh mục con\"],\"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+\":[\"Xóa tham số phụ kiện\"],\"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\":[\"Có đơn vị\"],\"jJ6ck0\":[\"Show templates with units\"],\"+ueC+W\":[\"Add Parameter Template\"],\"TEThbN\":[\"Edit Parameter Template\"],\"BXI6AQ\":[\"Delete Parameter Template\"],\"leKSr/\":[\"Add parameter template\"],\"GbI1d2\":[\"Tổng số lượng\"],\"+iVElN\":[\"Show pending orders\"],\"zKLEr5\":[\"Show received items\"],\"iV6RGP\":[\"View Sales Order\"],\"Lgnuy/\":[\"Kho tối thiểu\"],\"PHri/6\":[\"Lọc theo trạng thái mở phụ kiện\"],\"j5DYyt\":[\"Filter by part locked status\"],\"oQzKsK\":[\"Lọc theo thuộc tính lắp ráp\"],\"5JhtGd\":[\"Bao gồm phụ kiên trong danh mục con\"],\"oO7QIX\":[\"Lọc theo thuộc tính thành phần\"],\"n8MVvQ\":[\"Filter by testable attribute\"],\"MbixSq\":[\"Lọc theo thuộc tính có thể theo dõi\"],\"WyFVby\":[\"Lọc theo phụ kiện có chứa đơn vị\"],\"c9/Fqb\":[\"Có IPN\"],\"jh/Aa+\":[\"Lọc theo sản phẩm có số sản phẩm nội bộ\"],\"JqmfuT\":[\"Có kho\"],\"6Kd+HK\":[\"Lọc theo sản phẩm có trong kho\"],\"GDYPCw\":[\"Lọc theo sản phẩm có ít hàng\"],\"TW9g28\":[\"Có thể mua\"],\"KMdl2R\":[\"Lọc theo sản phẩm có thể mua\"],\"/3xNJ4\":[\"Có thể bán\"],\"V5i7hf\":[\"Lọc theo sản phẩm có thể bán\"],\"ksX7Wx\":[\"Ảo\"],\"QDTpY6\":[\"Lọc theo sản phẩm ảo\"],\"+SkaI8\":[\"Không ảo\"],\"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\":[\"Thêm phụ kiện liên quan\"],\"xG+5dj\":[\"Add related part\"],\"/kFxhJ\":[\"Xóa phụ kiện liên quan\"],\"EI0Ac7\":[\"Edit Related Part\"],\"HCpwcG\":[\"Add Selection List\"],\"n7tNkj\":[\"Edit Selection List\"],\"fo+0WX\":[\"Delete Selection List\"],\"3PRxO3\":[\"Stage\"],\"QqLLp2\":[\"Phần bổ sung hoạt động\"],\"s99Mc1\":[\"Phần bổ sung đang tắt\"],\"LtEW/l\":[\"Phần bổ sung chưa được cài đặt\"],\"fOuPPd\":[\"Phần bổ sung\"],\"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\":[\"Mô tả không có sẵn\"],\"t4Dg7a\":[\"Plugin information\"],\"etUvlY\":[\"Plugin Actions\"],\"CL5Gfb\":[\"Edit plugin\"],\"fLe7w+\":[\"Xác nhận kích hoạt phần bổ sung\"],\"HpK/8d\":[\"Reload\"],\"oBCe/M\":[\"Xác nhận tắt phần bổ sung\"],\"th4roR\":[\"The selected plugin will be activated\"],\"WPCUXx\":[\"The selected plugin will be deactivated\"],\"sxxj4o\":[\"Package information\"],\"5y3O+A\":[\"Hủy kích hoạt\"],\"FQBaXG\":[\"Kích hoạt\"],\"RqdYGI\":[\"Activate selected plugin\"],\"xWsR91\":[\"Plugin settings\"],\"R7mVjI\":[\"Update selected plugin\"],\"fo0VXg\":[\"Uninstall\"],\"ll8AEP\":[\"Uninstall selected plugin\"],\"yX/BXa\":[\"Delete selected plugin configuration\"],\"2RHgaV\":[\"Kích hoạt phần bổ sung\"],\"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\":[\"Mẫu\"],\"eQkgKV\":[\"Đã cài đặt\"],\"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\":[\"Mã nhà cung cấp\"],\"h3/Rpt\":[\"Liên kết nhà cung cấp\"],\"u7qly3\":[\"Mã nhà sản xuất\"],\"8Dmqxr\":[\"Show line items which have been received\"],\"ul9IpB\":[\"Nhận hạng mục\"],\"2vqtLo\":[\"Add line item\"],\"gyK1dv\":[\"Nhận hàng hóa\"],\"TOxiOu\":[\"MPN\"],\"v9F5VO\":[\"Đơn vị cơ sở\"],\"PsAftp\":[\"Thêm sản phẩm nhà cung cấp\"],\"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\":[\"Thu hồi\"],\"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\":[\"Thêm đơn vị tùy chỉnh\"],\"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\":[\"Thêm mã dự án\"],\"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\":[\"Chi tiết\"],\"L5d7xh\":[\"No user information\"],\"72c5Qo\":[\"Total\"],\"7Bj3x9\":[\"Failed\"],\"OWg6Ht\":[\"Khung nhìn màn hình di dộng đã được nhận dạng\"],\"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\":[\"Đọc tài liệu\"],\"DGeA2E\":[\"Ignore and continue to Desktop view\"]}")as Messages;
|