From 7d36049ac97d5fd4d0b022d1827a9dd338ed741e Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 17 Jan 2024 16:29:06 +1100 Subject: [PATCH] [React] UI Translation Updates (#6257) * Move locales definition into separate file - Cleanup settings.py a bit * Update docstring * Expose 'default_locale' to info API endpoint * Validate settings.LANGUAGE_CODE * Fix bug in BuildDetail page * Use selected language when making API queries * Translate more strings * Tweak variable name * Update locale config * Remove duplicate code * Remove compiled messages.ts translation files * Fixes for LanguageContext.tsx * Update messages.d.ts for sr locale * Ensure compiled files are served by django runserver * Amend changes to STATICFILES_DIRS * Cleanup prerender.py * Refetch status codes when locale is changed * Fix log msg * Clear out old static files --- .gitignore | 1 + InvenTree/InvenTree/api.py | 1 + InvenTree/InvenTree/locales.py | 47 +++++++++++++++ .../management/commands/prerender.py | 3 +- InvenTree/InvenTree/settings.py | 60 ++++++------------- src/frontend/src/contexts/LanguageContext.tsx | 37 +++++++++++- src/frontend/src/defaults/defaults.tsx | 3 +- src/frontend/src/locales/bg/messages.ts | 1 - src/frontend/src/locales/cs/messages.ts | 1 - src/frontend/src/locales/da/messages.ts | 1 - src/frontend/src/locales/de/messages.ts | 1 - src/frontend/src/locales/el/messages.ts | 1 - src/frontend/src/locales/en/messages.ts | 1 - src/frontend/src/locales/es-mx/messages.ts | 1 - src/frontend/src/locales/es/messages.ts | 1 - src/frontend/src/locales/fa/messages.ts | 1 - src/frontend/src/locales/fi/messages.ts | 1 - src/frontend/src/locales/fr/messages.ts | 1 - src/frontend/src/locales/he/messages.ts | 1 - src/frontend/src/locales/hi/messages.ts | 1 - src/frontend/src/locales/hu/messages.ts | 1 - src/frontend/src/locales/it/messages.ts | 1 - src/frontend/src/locales/ja/messages.ts | 1 - src/frontend/src/locales/ko/messages.ts | 1 - src/frontend/src/locales/nl/messages.ts | 1 - src/frontend/src/locales/no/messages.ts | 1 - src/frontend/src/locales/pl/messages.ts | 1 - .../src/locales/pseudo-LOCALE/messages.ts | 1 - src/frontend/src/locales/pt-br/messages.ts | 1 - src/frontend/src/locales/pt/messages.ts | 1 - src/frontend/src/locales/ru/messages.ts | 1 - src/frontend/src/locales/sl/messages.ts | 1 - src/frontend/src/locales/sr/messages.d.ts | 4 ++ src/frontend/src/locales/sv/messages.ts | 1 - src/frontend/src/locales/th/messages.ts | 1 - src/frontend/src/locales/tr/messages.ts | 1 - src/frontend/src/locales/vi/messages.ts | 1 - src/frontend/src/locales/zh-hans/messages.ts | 1 - src/frontend/src/locales/zh-hant/messages.ts | 1 - .../AccountSettings/AccountDetailPanel.tsx | 14 +++-- src/frontend/src/pages/build/BuildDetail.tsx | 16 +++-- src/frontend/src/states/states.tsx | 1 + tasks.py | 2 +- 43 files changed, 129 insertions(+), 91 deletions(-) create mode 100644 InvenTree/InvenTree/locales.py delete mode 100644 src/frontend/src/locales/bg/messages.ts delete mode 100644 src/frontend/src/locales/cs/messages.ts delete mode 100644 src/frontend/src/locales/da/messages.ts delete mode 100644 src/frontend/src/locales/de/messages.ts delete mode 100644 src/frontend/src/locales/el/messages.ts delete mode 100644 src/frontend/src/locales/en/messages.ts delete mode 100644 src/frontend/src/locales/es-mx/messages.ts delete mode 100644 src/frontend/src/locales/es/messages.ts delete mode 100644 src/frontend/src/locales/fa/messages.ts delete mode 100644 src/frontend/src/locales/fi/messages.ts delete mode 100644 src/frontend/src/locales/fr/messages.ts delete mode 100644 src/frontend/src/locales/he/messages.ts delete mode 100644 src/frontend/src/locales/hi/messages.ts delete mode 100644 src/frontend/src/locales/hu/messages.ts delete mode 100644 src/frontend/src/locales/it/messages.ts delete mode 100644 src/frontend/src/locales/ja/messages.ts delete mode 100644 src/frontend/src/locales/ko/messages.ts delete mode 100644 src/frontend/src/locales/nl/messages.ts delete mode 100644 src/frontend/src/locales/no/messages.ts delete mode 100644 src/frontend/src/locales/pl/messages.ts delete mode 100644 src/frontend/src/locales/pseudo-LOCALE/messages.ts delete mode 100644 src/frontend/src/locales/pt-br/messages.ts delete mode 100644 src/frontend/src/locales/pt/messages.ts delete mode 100644 src/frontend/src/locales/ru/messages.ts delete mode 100644 src/frontend/src/locales/sl/messages.ts create mode 100644 src/frontend/src/locales/sr/messages.d.ts delete mode 100644 src/frontend/src/locales/sv/messages.ts delete mode 100644 src/frontend/src/locales/th/messages.ts delete mode 100644 src/frontend/src/locales/tr/messages.ts delete mode 100644 src/frontend/src/locales/vi/messages.ts delete mode 100644 src/frontend/src/locales/zh-hans/messages.ts delete mode 100644 src/frontend/src/locales/zh-hant/messages.ts diff --git a/.gitignore b/.gitignore index a79862f102..a590b45fc7 100644 --- a/.gitignore +++ b/.gitignore @@ -105,6 +105,7 @@ InvenTree/plugins/ # Compiled translation files *.mo +messages.ts # web frontend (static files) InvenTree/web/static diff --git a/InvenTree/InvenTree/api.py b/InvenTree/InvenTree/api.py index 29b233e707..d47cf4b792 100644 --- a/InvenTree/InvenTree/api.py +++ b/InvenTree/InvenTree/api.py @@ -125,6 +125,7 @@ class InfoView(AjaxView): 'platform': InvenTree.version.inventreePlatform() if is_staff else None, 'installer': InvenTree.version.inventreeInstaller() if is_staff else None, 'target': InvenTree.version.inventreeTarget() if is_staff else None, + 'default_locale': settings.LANGUAGE_CODE, } return JsonResponse(data) diff --git a/InvenTree/InvenTree/locales.py b/InvenTree/InvenTree/locales.py new file mode 100644 index 0000000000..9ff7e9e928 --- /dev/null +++ b/InvenTree/InvenTree/locales.py @@ -0,0 +1,47 @@ +"""Support translation locales for InvenTree. + +If a new language translation is supported, it must be added here +After adding a new language, run the following command: +python manage.py makemessages -l -e html,js,py --no-wrap +where is the code for the new language +Additionally, update the following files with the new locale code: + +- /src/frontend/.linguirc file +- /src/frontend/src/context/LanguageContext.tsx +""" + +from django.utils.translation import gettext_lazy as _ + +LOCALES = [ + ('bg', _('Bulgarian')), + ('cs', _('Czech')), + ('da', _('Danish')), + ('de', _('German')), + ('el', _('Greek')), + ('en', _('English')), + ('es', _('Spanish')), + ('es-mx', _('Spanish (Mexican)')), + ('fa', _('Farsi / Persian')), + ('fi', _('Finnish')), + ('fr', _('French')), + ('he', _('Hebrew')), + ('hi', _('Hindi')), + ('hu', _('Hungarian')), + ('it', _('Italian')), + ('ja', _('Japanese')), + ('ko', _('Korean')), + ('nl', _('Dutch')), + ('no', _('Norwegian')), + ('pl', _('Polish')), + ('pt', _('Portuguese')), + ('pt-br', _('Portuguese (Brazilian)')), + ('ru', _('Russian')), + ('sl', _('Slovenian')), + ('sr', _('Serbian')), + ('sv', _('Swedish')), + ('th', _('Thai')), + ('tr', _('Turkish')), + ('vi', _('Vietnamese')), + ('zh-hans', _('Chinese (Simplified)')), + ('zh-hant', _('Chinese (Traditional)')), +] diff --git a/InvenTree/InvenTree/management/commands/prerender.py b/InvenTree/InvenTree/management/commands/prerender.py index 466b6666c7..54ed4601a4 100644 --- a/InvenTree/InvenTree/management/commands/prerender.py +++ b/InvenTree/InvenTree/management/commands/prerender.py @@ -58,10 +58,9 @@ class Command(BaseCommand): for file in os.listdir(SOURCE_DIR): path = os.path.join(SOURCE_DIR, file) if os.path.exists(path) and os.path.isfile(path): - print(f'render {file}') render_file(file, SOURCE_DIR, TARGET_DIR, locales, ctx) else: raise NotImplementedError( 'Using multi-level directories is not implemented at this point' ) # TODO multilevel dir if needed - print(f'rendered all files in {SOURCE_DIR}') + print(f'Rendered all files in {SOURCE_DIR}') diff --git a/InvenTree/InvenTree/settings.py b/InvenTree/InvenTree/settings.py index 8f46e5295e..4ef031e965 100644 --- a/InvenTree/InvenTree/settings.py +++ b/InvenTree/InvenTree/settings.py @@ -28,7 +28,7 @@ from InvenTree.config import get_boolean_setting, get_custom_file, get_setting from InvenTree.sentry import default_sentry_dsn, init_sentry from InvenTree.version import checkMinPythonVersion, inventreeApiVersion -from . import config +from . import config, locales checkMinPythonVersion() @@ -160,6 +160,10 @@ STATICFILES_I18_TRG = BASE_DIR.joinpath('InvenTree', 'static_i18n') STATICFILES_DIRS.append(STATICFILES_I18_TRG) STATICFILES_I18_TRG = STATICFILES_I18_TRG.joinpath(STATICFILES_I18_PREFIX) +# Append directory for compiled react files if debug server is running +if DEBUG and 'collectstatic' not in sys.argv: + STATICFILES_DIRS.append(BASE_DIR.joinpath('web', 'static')) + STATFILES_I18_PROCESSORS = ['InvenTree.context.status_codes'] # Color Themes Directory @@ -822,52 +826,26 @@ if type(EXTRA_URL_SCHEMES) not in [list]: # pragma: no cover logger.warning('extra_url_schemes not correctly formatted') EXTRA_URL_SCHEMES = [] +LANGUAGES = locales.LOCALES + +LOCALE_CODES = [lang[0] for lang in LANGUAGES] + # Internationalization # https://docs.djangoproject.com/en/dev/topics/i18n/ LANGUAGE_CODE = get_setting('INVENTREE_LANGUAGE', 'language', 'en-us') + +if ( + LANGUAGE_CODE not in LOCALE_CODES + and LANGUAGE_CODE.split('-')[0] not in LOCALE_CODES +): # pragma: no cover + logger.warning( + 'Language code %s not supported - defaulting to en-us', LANGUAGE_CODE + ) + LANGUAGE_CODE = 'en-us' + # Store language settings for 30 days LANGUAGE_COOKIE_AGE = 2592000 -# If a new language translation is supported, it must be added here -# After adding a new language, run the following command: -# python manage.py makemessages -l -e html,js,py --no-wrap -# where is the code for the new language -# Additionally, update the /src/frontend/.linguirc file -LANGUAGES = [ - ('bg', _('Bulgarian')), - ('cs', _('Czech')), - ('da', _('Danish')), - ('de', _('German')), - ('el', _('Greek')), - ('en', _('English')), - ('es', _('Spanish')), - ('es-mx', _('Spanish (Mexican)')), - ('fa', _('Farsi / Persian')), - ('fi', _('Finnish')), - ('fr', _('French')), - ('he', _('Hebrew')), - ('hi', _('Hindi')), - ('hu', _('Hungarian')), - ('it', _('Italian')), - ('ja', _('Japanese')), - ('ko', _('Korean')), - ('nl', _('Dutch')), - ('no', _('Norwegian')), - ('pl', _('Polish')), - ('pt', _('Portuguese')), - ('pt-br', _('Portuguese (Brazilian)')), - ('ru', _('Russian')), - ('sl', _('Slovenian')), - ('sr', _('Serbian')), - ('sv', _('Swedish')), - ('th', _('Thai')), - ('tr', _('Turkish')), - ('vi', _('Vietnamese')), - ('zh-hans', _('Chinese (Simplified)')), - ('zh-hant', _('Chinese (Traditional)')), -] - - # Testing interface translations if get_boolean_setting('TEST_TRANSLATIONS', default_value=False): # pragma: no cover # Set default language diff --git a/src/frontend/src/contexts/LanguageContext.tsx b/src/frontend/src/contexts/LanguageContext.tsx index 2dc0332e99..56bf6e6ea8 100644 --- a/src/frontend/src/contexts/LanguageContext.tsx +++ b/src/frontend/src/contexts/LanguageContext.tsx @@ -5,11 +5,14 @@ import { LoadingOverlay, Text } from '@mantine/core'; import { useEffect, useRef, useState } from 'react'; import { api } from '../App'; +import { useServerApiState } from '../states/ApiState'; import { useLocalState } from '../states/LocalState'; // Definitions export type Locales = keyof typeof languages | 'pseudo-LOCALE'; +export const defaultLocale = 'en'; + export const languages: Record = { bg: t`Bulgarian`, cs: t`Czech`, @@ -45,6 +48,11 @@ export const languages: Record = { export function LanguageContext({ children }: { children: JSX.Element }) { const [language] = useLocalState((state) => [state.language]); + const [server] = useServerApiState((state) => [state.server]); + + useEffect(() => { + activateLocale(defaultLocale); + }, []); const [loadedState, setLoadedState] = useState< 'loading' | 'loaded' | 'error' @@ -57,6 +65,32 @@ export function LanguageContext({ children }: { children: JSX.Element }) { activateLocale(language) .then(() => { if (isMounted.current) setLoadedState('loaded'); + + /* + * Configure the default Accept-Language header for all requests. + * - Locally selected locale + * - Server default locale + * - en-us (backup) + */ + let locales: (string | undefined)[] = []; + + if (language != 'pseudo-LOCALE') { + locales.push(language); + } + + if (!!server.default_locale) { + locales.push(server.default_locale); + } + + if (locales.indexOf('en-us') < 0) { + locales.push('en-us'); + } + + // Update default Accept-Language headers + api.defaults.headers.common['Accept-Language'] = locales.join(', '); + + // Reload server state (refresh status codes) + useServerApiState.getState().fetchServerApiState(); }) .catch((err) => { console.error('Failed loading translations', err); @@ -90,7 +124,4 @@ export async function activateLocale(locale: Locales) { const { messages } = await import(`../locales/${locale}/messages.ts`); i18n.load(locale, messages); i18n.activate(locale); - - // Set api header - api.defaults.headers.common['Accept-Language'] = locale; } diff --git a/src/frontend/src/defaults/defaults.tsx b/src/frontend/src/defaults/defaults.tsx index 48e1796f94..ab1a5c5fae 100644 --- a/src/frontend/src/defaults/defaults.tsx +++ b/src/frontend/src/defaults/defaults.tsx @@ -16,7 +16,8 @@ export const emptyServerAPI = { system_health: null, platform: null, installer: null, - target: null + target: null, + default_locale: null }; export interface SiteMarkProps { diff --git a/src/frontend/src/locales/bg/messages.ts b/src/frontend/src/locales/bg/messages.ts deleted file mode 100644 index 387916aba4..0000000000 --- a/src/frontend/src/locales/bg/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"PuPuVa\":\"View barcode\",\"3Bbgw2\":\"Link Barcode\",\"3GmetT\":\"Link custom barcode\",\"ut1J8k\":\"Unlink Barcode\",\"AlfG1i\":\"Unlink custom barcode\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"ZatbPe\":\"Delete item\",\"euc6Ns\":\"Duplicate\",\"QXHPgY\":\"Duplicate item\",\"/4gGIX\":\"Copy to clipboard\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"cUyJH1\":\"This information is only available for staff users\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"DN+WU3\":\"Your InvenTree version status is\",\"Hz3dBg\":\"Development Version\",\"DS7OAx\":\"Up to Date\",\"YXMY4w\":\"Update Available\",\"/4WpyD\":\"Version Information\",\"7UvbG+\":\"InvenTree Version\",\"wh0+YJ\":\"Commit Hash\",\"26rItp\":\"Commit Date\",\"2dP9Tz\":\"Commit Branch\",\"8XeFzA\":\"API Version\",\"w4AvPz\":\"Python Version\",\"g27hpz\":\"Django Version\",\"Rj01Fz\":\"Links\",\"28DkqT\":\"InvenTree Documentation\",\"Fh6/a1\":\"View Code on GitHub\",\"lDIOek\":\"Credits\",\"gI5gJF\":\"Mobile App\",\"f43Mpl\":\"Submit Bug Report\",\"Z3HrI+\":\"Copy version information\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"sGH11W\":\"Server\",\"CIEoqM\":\"Instance Name\",\"JY5Oyv\":\"Database\",\"O4PAXt\":\"Bebug Mode\",\"odYm26\":\"Server is running in debug mode\",\"QS5AeO\":\"Docker Mode\",\"ld9FQa\":\"Server is deployed using docker\",\"16gOdK\":\"Plugin Support\",\"GhZ9CI\":\"Plugin support enabled\",\"VL9bCO\":\"Plugin support disabled\",\"/yfSe4\":\"Server status\",\"yGS9cI\":\"Healthy\",\"IueqnF\":\"Issues detected\",\"/XqPnF\":\"Background Worker\",\"Oe/dvo\":\"Background worker not running\",\"G5zNMX\":\"Email Settings\",\"QFMozt\":\"Email settings not configured\",\"eE0JZ4\":\"Version\",\"vmmz7E\":\"Server Version\",\"vERlcd\":\"Profile\",\"uTLn08\":\"Admin Center\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"2GkbLI\":\"Part Categories\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"1eBWAw\":\"Stock Locations\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"Sdfr6G\":\"Project Code\",\"AklCpf\":\"Project Codes\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"Nu4oKW\":\"Description\",\"yzF66j\":\"Link\",\"SgduFH\":\"Line Items\",\"uAQUqI\":\"Status\",\"XQACoK\":\"Responsible\",\"ZmykKo\":\"Target Date\",\"FNcMGM\":\"Creation Date\",\"MFQxyA\":\"Shipment Date\",\"Q2lUR2\":\"Currency\",\"KyZVKD\":\"Total Price\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"VbWX2u\":\"Quantity\",\"vTKklW\":\"Substitutes\",\"LLAa/9\":\"Optional\",\"duCsZf\":\"Consumable\",\"dnCTyJ\":\"Allow Variants\",\"UF/nv9\":\"Gets Inherited\",\"YA4hwj\":\"Price Range\",\"csDS2L\":\"Available\",\"AbC1Px\":\"No stock\",\"XTe+lK\":\"Includes substitute stock\",\"LdvJ9e\":\"Includes variant stock\",\"/MB+gl\":\"On order\",\"oGd3rK\":\"Available Stock\",\"S/9nwz\":\"Can Build\",\"1DBGsz\":\"Notes\",\"NJevqq\":\"Validate\",\"+e3Z9N\":\"Assembled Part\",\"TVjR+9\":\"Required Part\",\"CP3D8G\":\"Progress\",\"1hKEom\":\"Priority\",\"qqWcBV\":\"Completed\",\"kmUN8p\":\"Issued By\",\"d+F6q9\":\"Created\",\"F6pfE9\":\"Active\",\"ddrz1m\":\"Overdue\",\"iU3XRS\":\"Assigned to me\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"Lgnuy/\":\"Minimum stock\",\"0lg3zX\":\"On Order\",\"oZd08v\":\"Building\",\"KCpl4N\":\"Build Order Allocations\",\"DaWMWw\":\"Sales Order Allocations\",\"odasNw\":\"Stock Information\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"rRDi3Y\":\"Detail\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"lDgVWA\":\"Receive\",\"ul9IpB\":\"Receive line item\",\"vgosWS\":\"Edit Line Item\",\"nkUDeI\":\"Line item updated\",\"5ZWiLz\":\"Part Description\",\"J9LTXQ\":\"Pack Quantity\",\"GbI1d2\":\"Total Quantity\",\"fZ5Vnu\":\"Received\",\"PeuqsI\":\"Supplier Code\",\"h3/Rpt\":\"Supplier Link\",\"u7qly3\":\"Manufacturer Code\",\"vWelsN\":\"Unit Price\",\"Enslfm\":\"Destination\",\"pwb7Yo\":\"Add Line Item\",\"95PcjS\":\"Line item added\",\"2vqtLo\":\"Add line item\",\"gyK1dv\":\"Receive items\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"+m9/3S\":\"Manufacturer\",\"TOxiOu\":\"MPN\",\"zn38D/\":\"In Stock\",\"pD/Ew0\":\"Packaging\",\"v9F5VO\":\"Base units\",\"lXkUEV\":\"Availability\",\"+b7T3G\":\"Updated\",\"EREF+D\":\"Add Supplier Part\",\"LjPQ/X\":\"Supplier part created\",\"PsAftp\":\"Add supplier part\",\"qZstuw\":\"Edit Supplier Part\",\"mwOWRa\":\"Supplier part updated\",\"9Qoago\":\"Delete Supplier Part\",\"3GcBv9\":\"Supplier part deleted\",\"YGIkv1\":\"Are you sure you want to remove this supplier part?\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"A6C0pv\":\"Total Cost\",\"fqDzSu\":\"Rate\",\"aQFOy1\":\"Exchange rates updated\",\"OZSHCs\":\"Exchange rate update error\",\"HQlD/8\":\"Refresh currency exchange rates\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"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\",\"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\",\"a5n/wL\":\"No stock available\",\"ddPzUj\":\"This stock item has been depleted\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"KhEBDR\":\"Bulgarian\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"yPiRbD\":\"System Information\",\"kyAi7k\":\"Instance\",\"vHeNia\":\"InvenTree\",\"iDxamh\":\"About InvenTree\",\"Q5S3DY\":\"About this Inventree instance\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"gqrPgW\":\"Stock item updated\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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/>\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"AQoSYJ\":\"Account Details\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"sGV/QR\":\"Single Sign On Accounts\",\"GYQmzM\":\"Not enabled\",\"Sm3zWc\":\"Single Sign On is not enabled for this server\",\"gzRIYb\":\"Multifactor\",\"3JPMTK\":\"Multifactor authentication is not configured for your account\",\"Xfy/DT\":\"The following email addresses are associated with your account:\",\"T/R+Qz\":\"Primary\",\"QDEWii\":\"Verified\",\"VBTGXl\":\"Unverified\",\"oLztc+\":\"Add Email Address\",\"Y/cuRF\":\"E-Mail\",\"JqLqpm\":\"E-Mail address\",\"g/Kbij\":\"Make Primary\",\"+GoJJW\":\"Re-send Verification\",\"t/YqKh\":\"Remove\",\"0+CYPj\":\"Add Email\",\"vwfjas\":\"Provider has not been configured\",\"SDND4q\":\"Not configured\",\"fkCzQP\":\"There are no social network accounts connected to this account.\",\"B1uCAI\":\"You can sign in to your account using any of the following third party accounts\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"FEr96N\":\"Theme\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"yDOdwQ\":\"User Management\",\"L83fOm\":\"Select settings relevant for user lifecycle. More available in\",\"D4SseJ\":\"System settings\",\"UDMjsP\":\"Quick Actions\",\"zYSRQY\":\"Add a new user\",\"JBPRnC\":\"Advanced Amininistrative Options for InvenTree\",\"eKHY3W\":\"Plugin Settings\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"kUZvR6\":\"Exchange Rates\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"rXda+w\":\"Switch to User Setting\",\"AeXO77\":\"Account\",\"a3LDKx\":\"Security\",\"+4YDgS\":\"Display Options\",\"Puv7+X\":\"Account Settings\",\"4ejweu\":\"Switch to System Setting\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"VSd7DB\":\"View part barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"B7ynKf\":\"Edit Build Order\",\"JWtsrK\":\"Build Order updated\",\"+UKDx2\":\"Unlink custom barcode from part\",\"YxwWvi\":\"Build Order\",\"Tyj32s\":\"Reporting Actions\",\"imB4Wr\":\"Edit build order\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"tDgG1Y\":\"Build Order Actions\",\"59jtLx\":\"Add Build Order\",\"x1gTgF\":\"Build order created\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"KwhnxF\":\"Allocations\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"E0ub4Q\":\"Manufacturers\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"bbA1t1\":\"Stock Actions\",\"metDDP\":\"Delete part\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"/IKytX\":\"Order Actions\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"dljGeD\":\"Test Data\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"ClJC3x\":\"Stock Operations\",\"rb0Klh\":\"Count stock\",\"m16xKo\":\"Add\",\"vq/m8u\":\"Add stock\",\"qpe+W0\":\"Remove stock\",\"zPGNJm\":\"Transfer\",\"+OxnAC\":\"Transfer stock\",\"KD3GYK\":\"Duplicate stock item\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/cs/messages.ts b/src/frontend/src/locales/cs/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/cs/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/da/messages.ts b/src/frontend/src/locales/da/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/da/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/de/messages.ts b/src/frontend/src/locales/de/messages.ts deleted file mode 100644 index e457834818..0000000000 --- a/src/frontend/src/locales/de/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Abgeschlossen\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Abbrechen\",\"hQRttt\":\"Speichern\",\"4GKuCs\":\"Login fehlgeschlagen\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Willkommen zurück!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Prüfen Sie Ihren Posteingang auf den Anmeldelink. Wenn Sie ein Konto haben, erhalten Sie einen Anmeldelink. Prüfen Sie auch den Spam.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Eingabefehler\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Nutzername\",\"8ZsakT\":\"Passwort\",\"9TO8nT\":\"Dein Passwort\",\"RfwZxd\":\"Passwort zurücksetzen\",\"O3oNi5\":\"Mail\",\"Wr5sDQ\":\"Wir werden Ihnen einen Link für die Anmeldung senden\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Mail erhalten\",\"XlWstl\":\"Benutzername und Passwort verwenden\",\"ADVQ46\":\"Anmelden\",\"i/TzEU\":\"E-Mail senden\",\"Ai2U7L\":\"Adresse\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"Kein Eintrag...\",\"UYWLpE\":\"Adresse hinzufügen\",\"tfDRzk\":\"Speichern\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Fehler\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Mehr lesen\",\"29VNqC\":\"Unbekannter Fehler\",\"nlJhkA\":\"Ein Fehler ist aufgetreten:\",\"Qoq+GP\":\"Mehr lesen\",\"DVAy0b\":\"InvenTree's Logo\",\"3TnJRX\":\"Diese Funktion/Schaltfläche/Seite ist ein Platzhalter für eine Funktion, die nicht, nur teilweise oder nur für Tests implementiert ist.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"QR-Code scannen\",\"l75CjT\":\"Ja\",\"1UzENP\":\"Nein\",\"GU7xAr\":\"Unbekannte Antwort\",\"UHot+L\":\"Fehler beim Laden der Kamera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Dialog schließen\",\"vERlcd\":\"Profil\",\"Tz0i8g\":\"Einstellungen\",\"T3FM0r\":\"Benutzereinstellungen\",\"zNkWa6\":\"Einstellungen\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Abmelden\",\"rmlxV1\":\"Navigation öffnen\",\"N6Pxr9\":\"Alle anzeigen\",\"ZDIydz\":\"Loslegen\",\"BQDL+H\":\"Übersicht über die wichtigsten Objekte, Funktionen und mögliche Anwendungsfälle.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Benachrichtigungen\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Suchoptionen\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"Keine Ergebnisse\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"Nutzer\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Webseite\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Startseite\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Lizenzen für Pakete, die von InvenTree verwendet werden\",\"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\":\"Profilseite\",\"CFYxhi\":\"Benutzerattribute und Designeinstellungen.\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"Auf Wiedersehen.\",\"eX0txO\":\"Prüfen Sie Ihren Posteingang für einen Link zum Zurücksetzen. Dies funktioniert nur, wenn Sie ein Konto haben. Prüfen Sie auch den Spam-Ordner.\",\"WhimMi\":\"Zurücksetzen fehlgeschlagen\",\"iVj6ge\":\"Bereits angemeldet\",\"FR/+0K\":\"Es existiert ein Login - mit dem Sie angemeldet werden.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Prüfe ob Sie bereits angemeldet sind\",\"bX1aQ5\":\"Keine Auswahl\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Mail senden\",\"eV2FZ+\":\"Token ungültig\",\"uAHzZQ\":\"Sie müssen einen gültigen Token angeben, um ein neues Passwort festzulegen. Prüfen Sie Ihren Posteingang für einen Link zum Zurücksetzen.\",\"+5xxir\":\"Kein Token angegeben\",\"KuLTFa\":\"Sie müssen einen Token angeben, um ein neues Passwort festzulegen. Prüfen Sie Ihren Posteingang für einen Link zum Zurücksetzen.\",\"Hw2MHB\":\"Passwort festgelegt\",\"+p8fKY\":\"Das Passwort wurde erfolgreich festgelegt. Sie können sich jetzt mit Ihrem neuen Passwort anmelden\",\"V/e7nf\":\"Passwort festlegen\",\"TpqeIh\":[\"Fehler: \",[\"0\"]],\"b3ilvM\":\"Es ist ein unerwarteter Fehler aufgetreten.\",\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"Benutzerdetails\",\"JOUEkZ\":[\"Vorname: \",[\"0\"]],\"GlGzeI\":[\"Nachname: \",[\"0\"]],\"PkcDO7\":[\"Benutzername: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Nicht gefunden\",\"FeQ++0\":\"Diese Seite ist nicht bekannt oder wurde verschoben.\",\"wmCIch\":\"Zur Startseite\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/el/messages.ts b/src/frontend/src/locales/el/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/el/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/en/messages.ts b/src/frontend/src/locales/en/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/en/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/es-mx/messages.ts b/src/frontend/src/locales/es-mx/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/es-mx/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/es/messages.ts b/src/frontend/src/locales/es/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/es/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/fa/messages.ts b/src/frontend/src/locales/fa/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/fa/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/fi/messages.ts b/src/frontend/src/locales/fi/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/fi/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/fr/messages.ts b/src/frontend/src/locales/fr/messages.ts deleted file mode 100644 index b2b3882237..0000000000 --- a/src/frontend/src/locales/fr/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Titre\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Annuler\",\"hQRttt\":\"Envoyer\",\"4GKuCs\":\"Login invalide\",\"tnaYa/\":\"Vérifiez votre saisie et réessayez.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Connexion réussie\",\"rxWA39\":\"Bon retour parmi nous !\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Envoi du mail réussi\",\"R2JMfc\":\"Vérifiez votre boîte de réception pour le lien de connexion. Si vous avez un compte, vous recevrez un lien de connexion. Vérifiez également dans le courrier indésirable.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Erreur d'entrée\",\"BL4vL0\":\"Bienvenue, connectez-vous ci-dessous\",\"7sNhEz\":\"Nom d'utilisateur\",\"8ZsakT\":\"Mot de passe\",\"9TO8nT\":\"Mot de passe\",\"RfwZxd\":\"Réinitialiser le mot de passe\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"Nous vous enverrons un lien pour vous connecter - si vous êtes déjà inscrit\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Envoyez-moi un e-mail\",\"XlWstl\":\"Je vais utiliser le nom d'utilisateur et le mot de passe\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Serveur\",\"6YtxFj\":\"Nom\",\"yWMzcH\":\"Personne ici...\",\"UYWLpE\":\"Ajouter un hôte\",\"tfDRzk\":\"Enregistrer\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Nom : \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Erreur\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Miniature\",\"IvkbIT\":\"En Savoir Plus\",\"29VNqC\":\"Erreur inconnue\",\"nlJhkA\":\"Une erreur s'est produite :\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"Logo InvenTree\",\"3TnJRX\":\"Cette fonctionnalité/bouton/site est un espace réservé pour une fonctionnalité qui n'est pas implémentée, implémentée partiellement ou destinée à des tests.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scanner le QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Réponse inconnue\",\"UHot+L\":\"Erreur lors de l’activation de la caméra\",\"bR26mb\":\"Erreur lors du scan\",\"fvJQqd\":\"Erreur lors de l'arrêt\",\"CMQ09J\":\"Analyse en cours\",\"Fg9r/3\":\"Pas de scan en cours\",\"QuNKRX\":\"Sélectionner la caméra\",\"m3BKG+\":\"Commencer le scan\",\"yFRXH8\":\"Arrêter le scan\",\"3164SS\":\"Aucun scan pour le moment !\",\"RWw9Lg\":\"Fermer\",\"vERlcd\":\"Profil\",\"Tz0i8g\":\"Paramètres\",\"T3FM0r\":\"Paramètres du compte\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Extensions\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Se déconnecter\",\"rmlxV1\":\"Ouvrir la navigation\",\"N6Pxr9\":\"Tout afficher\",\"ZDIydz\":\"Commencez\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"À propos\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"résultats\",\"Dwt0g3\":\"Entrez un texte à rechercher\",\"9UYKcs\":\"Options de recherche\",\"qkCZlJ\":\"Recherche par regex\",\"roauu/\":\"Recherche par mot entier\",\"hJCuaV\":\"Une erreur s'est produite lors de la recherche\",\"Ev2r9A\":\"Aucun résultat\",\"dTtbrX\":\"Aucun résultat disponible pour la requête\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Composants\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Pièces du fournisseur\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Pièces du fabricant\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Catégories de composants\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Articles en stock\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Emplacements de stock\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Sociétés\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Ordres d'achat\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Ordres de vente\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Retours\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"Utilisateur\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Sélectionner les colonnes\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Télécharger la sélection\",\"rn2/2V\":\"Supprimer le filtre\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Site web\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Paramètres d'Affichage\",\"FpsvqB\":\"Mode de couleur\",\"vXIe7J\":\"Langue\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Démo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Premiers Pas\",\"VAYCzI\":\"Démarrer avec InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"Documentation de l'API d'InvenTree\",\"BOAupq\":\"Manuel du développeur\",\"kUcL4g\":\"Manuel du développeur InvenTree\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Foire aux questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"À propos d'InvenTree\",\"snyG+w\":\"Licences\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Déconnexion résussie\",\"aJhI/3\":\"À bientôt.\",\"eX0txO\":\"Vérifiez votre boîte de réception pour un lien de réinitialisation. Cela ne fonctionne que si vous avez un compte. Vérifiez également dans le spam.\",\"WhimMi\":\"Échec de la réinitialisation\",\"iVj6ge\":\"Déjà connecté\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Vérifier si vous êtes déjà connecté\",\"bX1aQ5\":\"Aucune sélection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Envoyer un e-mail\",\"eV2FZ+\":\"Jeton invalide\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"Aucun jeton fourni\",\"KuLTFa\":\"Vous devez fournir un jeton pour définir un nouveau mot de passe. Vérifiez votre boîte de réception pour un lien de réinitialisation.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"Votre mot de passe a été modifié avec succès. Vous pouvez maintenant vous connecter avec votre nouveau mot de passe\",\"V/e7nf\":\"Définir un nouveau mot de passe\",\"TpqeIh\":[\"Erreur : \",[\"0\"]],\"b3ilvM\":\"Désolé, une erreur inattendue s'est produite.\",\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"Informations utilisateur\",\"JOUEkZ\":[\"Prénom - \",[\"0\"]],\"GlGzeI\":[\"Nom : \",[\"0\"]],\"PkcDO7\":[\"Nom d'utilisateur : \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"barres\",\"Ai6veK\":\"ovale\",\"8zGXnJ\":\"points\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Couleur Principale\",\"160vo+\":\"Couleur blanche\",\"u01284\":\"Couleur noire\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Ordres de fabrication\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Non trouvé\",\"FeQ++0\":\"Désolé, cette page est inconnue ou a été déplacée.\",\"wmCIch\":\"Aller à la page d'accueil\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"L'interface utilisateur de la plateforme est optimisée pour les tablettes et les ordinateurs de bureau, vous pouvez utiliser l'application officielle pour une expérience mobile.\",\"NtcqDr\":\"Lire la documentation\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/he/messages.ts b/src/frontend/src/locales/he/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/he/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/hi/messages.ts b/src/frontend/src/locales/hi/messages.ts deleted file mode 100644 index c6ab2ecd98..0000000000 --- a/src/frontend/src/locales/hi/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"शीर्षक\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"लॉगिन असफल\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"लॉगिन सफल\",\"rxWA39\":\"आपका पुनः स्वागत है\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"इनपुट त्रुटि\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"उपयोगकर्ता नाम\",\"8ZsakT\":\"पासवर्ड\",\"9TO8nT\":\"आपका पासवर्ड\",\"RfwZxd\":\"पासवर्ड रीसेट करें\",\"O3oNi5\":\"ई-मेल\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"नाम\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"सुरक्षित करें\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"क्यूआर कोड स्कैन करें\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"कैमरा चुनें\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/hu/messages.ts b/src/frontend/src/locales/hu/messages.ts deleted file mode 100644 index 1bc104aff1..0000000000 --- a/src/frontend/src/locales/hu/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Cím\",\"zzDlyQ\":\"Siker\",\"rl7FGt\":\"Form hibák vannak\",\"dEgA5A\":\"Mégsem\",\"hQRttt\":\"Küldés\",\"4GKuCs\":\"Belépés sikertelen\",\"tnaYa/\":\"Ellenőrizd amit beírtál és próbáld újra.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Sikeres bejelentkezés\",\"rxWA39\":\"Üdv újra!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Levél kézbesítése sikeres\",\"R2JMfc\":\"A bejelentkezési linket keresd a bejövő email fiókodban. Ellenőrizd a spameket is.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Beviteli hiba\",\"BL4vL0\":\"Üdvözlet, bejelentkezés lent\",\"7sNhEz\":\"Felhasználónév\",\"8ZsakT\":\"Jelszó\",\"9TO8nT\":\"Jelszó\",\"RfwZxd\":\"Jelszó visszaállítása\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"Küldünk bejelentkezési linket - ha regisztrálva vagy\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Email küldés\",\"XlWstl\":\"Felhasználónevet és jelszót fogok használni\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Kiszolgáló\",\"6YtxFj\":\"Név\",\"yWMzcH\":\"Nincs itt senki...\",\"UYWLpE\":\"Kiszolgáló hozzáadása\",\"tfDRzk\":\"Mentés\",\"GG8+B2\":\"Válassz cél példányt\",\"uqEJlE\":\"Lehetséges kiszolgáló opciók szerkesztése\",\"GUtCZC\":[\"Verzió: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Név: \",[\"0\"]],\"ed0N/H\":[\"Státusz: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Hiba\",\"A1taO8\":\"Keresés\",\"yQE2r9\":\"Betöltés\",\"AxPAXW\":\"Nincs találat\",\"sGeXL3\":\"Bélyegkép\",\"IvkbIT\":\"Tudj meg többet\",\"29VNqC\":\"Ismeretlen hiba\",\"nlJhkA\":\"Hiba történt:\",\"Qoq+GP\":\"Tovább\",\"DVAy0b\":\"InvenTree logó\",\"3TnJRX\":\"Ez a funkció/gomb/webhely egy olyan funkció helye, amely nincs implementálva, csak részleges vagy tesztelésre szánt.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"Ez egy helykitöltő panel.\",\"XDwkfO\":\"QR kód beolvasása\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Ismeretlen válasz\",\"UHot+L\":\"Hiba a kamera megnyitása közben\",\"bR26mb\":\"Hiba a kódolvasás közben\",\"fvJQqd\":\"Hiba a leállítás közben\",\"CMQ09J\":\"Kódolvasás\",\"Fg9r/3\":\"Nincs kódolvasás\",\"QuNKRX\":\"Kamera kiválasztása\",\"m3BKG+\":\"Kódolvasás indítása\",\"yFRXH8\":\"Kódolvasás leállítása\",\"3164SS\":\"Még nincs meg a kód!\",\"RWw9Lg\":\"Felugró ablak bezárása\",\"vERlcd\":\"Profil\",\"Tz0i8g\":\"Beállítások\",\"T3FM0r\":\"Fiókbeállítások\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Pluginok\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Kijelentkezés\",\"rmlxV1\":\"Navigáció megnyitása\",\"N6Pxr9\":\"Összes megtekintése\",\"ZDIydz\":\"Kezdés\",\"BQDL+H\":\"Magas szintű objektumok, funkciók és lehetséges használati esetek áttekintése.\",\"UxKoFf\":\"Navigáció\",\"wRR604\":\"Oldalak\",\"TvY/XA\":\"Dokumentáció\",\"uyJsf6\":\"Névjegy\",\"iDNBZe\":\"Értesítések\",\"t2pqHO\":\"Nincs olvasatlan értesítésed.\",\"+s1J8k\":\"Megjelölés olvasottként\",\"mO8KLE\":\"eredmények\",\"Dwt0g3\":\"Írd be a keresett szöveget\",\"9UYKcs\":\"Keresési opciók\",\"qkCZlJ\":\"Regex keresés\",\"roauu/\":\"Teljes szó keresés\",\"hJCuaV\":\"Hiba történt a keresés közben\",\"Ev2r9A\":\"Nincs találat\",\"dTtbrX\":\"Nincs találat a keresésre\",\"5iarLn\":[\"Ismeretlen model: \",[\"model\"]],\"vgP+9p\":\"Alkatrész\",\"pmRbKZ\":\"Alkatrészek\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Beszállítói alkatrészek\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Gyártói alkatrészek\",\"QXANxH\":\"Alkatrész kategória\",\"2GkbLI\":\"Alkatrész kategóriák\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Készlet tételek\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Készlethelyek\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Gyártás\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Cégek\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Beszerzési rendelések\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Vevői rendelések\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Visszavételek\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"Felhasználó\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Szállítmány\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Oszlopok kiválasztása\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Kiválasztott adatok letöltése\",\"rn2/2V\":\"Szűrő eltávolítása\",\"N73rrp\":\"Tábla szűrő hozzáadása\",\"ot7qsv\":\"Összes szűrő törlése\",\"vCSBPD\":\"Szűrő hozzáadása\",\"c+xCSz\":\"Igaz\",\"ocUvR+\":\"Hamis\",\"jpXCTI\":\"Tábla szűrő hozzáadása\",\"R39XGq\":\"Válassz az elérhető szűrők közül\",\"o7J4JM\":\"Szűrő\",\"hpMOSe\":\"Szűrő kiválasztása\",\"wMHvYH\":\"Érték\",\"Fo55lj\":\"Szűrő érték kiválasztása\",\"PzFzS+\":\"Szűrő hozzáadása\",\"EqGTpW\":\"Nincs találat\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Hibás kérés\",\"dA/8If\":\"Jogosulatlan\",\"7JBW66\":\"Tiltott\",\"KPx1UV\":\"Nem található\",\"v1qpjB\":\"Vonalkód műveletek\",\"inVgrM\":\"Nyomtatási műveletek\",\"8RYNR1\":\"Adatok frissítése\",\"j2wMlR\":\"Táblaszűrők\",\"7L01XJ\":\"Műveletek\",\"N2C89m\":\"Azonosító\",\"Nu4oKW\":\"Leírás\",\"Sdfr6G\":\"Projektszám\",\"VbWX2u\":\"Mennyiség\",\"qqWcBV\":\"Kész\",\"uAQUqI\":\"Állapot\",\"1hKEom\":\"Prioritás\",\"d+F6q9\":\"Létrehozva\",\"ZmykKo\":\"Cél dátum\",\"kmUN8p\":\"Kiállította\",\"XQACoK\":\"Felelős\",\"UY1vmE\":\"Melléklet\",\"NBdIgR\":\"Megjegyzés\",\"3wG7HI\":\"Feltöltve\",\"ePK91l\":\"Szerkesztés\",\"cnGeoo\":\"Törlés\",\"FJqE4H\":\"Fájl feltöltve\",\"3LxYDr\":[\"A \",[\"0\"],\" fájl sikeresen feltöltve\"],\"ae3dey\":\"Feltöltési Hiba\",\"GZnmeE\":\"A fájlt nem sikerült feltölteni\",\"V8euYO\":\"Melléklet hozzáadása\",\"DpV4ac\":\"Külső hivatkozás hozzáadása\",\"32o8IC\":\"Nem találhatók mellékletek\",\"VHmXZm\":\"Melléklet feltöltése\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Weboldal\",\"RCU5PY\":\"Életkor\",\"K7tIrx\":\"Kategória\",\"5+87Pq\":\"Értesítés\",\"xDAtGP\":\"Üzenet\",\"I6gXOa\":\"Elérési út\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Mértékegységek\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Készlet\",\"YA4hwj\":\"Ártartomány\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Aktív\",\"PHri/6\":\"Szűrés aktív státusz szerint\",\"WL36Yh\":\"Gyártmány\",\"oQzKsK\":\"Szűrés szerelési tulajdonság szerint\",\"NgZniC\":\"Alkategóriákkal együtt\",\"5JhtGd\":\"Alkategóriákkal együtt\",\"dK3Z9j\":\"Összetevő\",\"oO7QIX\":\"Szűrés összetevő tulajdonság szerint\",\"y6MnU0\":\"Követésre kötelezett\",\"MbixSq\":\"Szűrés követésre kötelezettség szerint\",\"YyRdJQ\":\"Van mértékegysége\",\"WyFVby\":\"Szűrés meglévő mértékegység szerint\",\"c9/Fqb\":\"Van IPN-je\",\"jh/Aa+\":\"Szűrés meglévő IPN szerint\",\"JqmfuT\":\"Van készlet\",\"6Kd+HK\":\"Szűrés meglévő készlet szerint\",\"UgdO7s\":\"Alacsony készlet\",\"GDYPCw\":\"Szűrés alacsony készlet szerint\",\"TW9g28\":\"Beszerezhető\",\"KMdl2R\":\"Szűrés beszerezhetőség szerint\",\"/3xNJ4\":\"Értékesíthető\",\"V5i7hf\":\"Szűrés értékesíthetőség szerint\",\"ksX7Wx\":\"Virtuális\",\"QDTpY6\":\"Szűrés virtuális alkatrészek szerint\",\"+SkaI8\":\"Nem virtuális\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Kapcsolódó alkatrész hozzáadása\",\"Vssu+n\":\"Kapcsolódó alkatrész\",\"yxfxt9\":\"Kapcsolódó alkatrész hozzáadva\",\"xG+5dj\":\"Kapcsolódó alkatrész hozzáadása\",\"/kFxhJ\":\"Kapcsolódó alkatrész törlése\",\"oNps5U\":\"Kapcsolódó alkatrész törölve\",\"ZKMkzF\":\"Biztosan törölni szeretnéd ezt a kapcsolatot?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Hely\",\"VikQny\":\"Teszt szűrő\",\"ay6lVf\":\"Ez egy teszt szűrő\",\"PRKZBP\":\"Szerkezeti\",\"bVhrVt\":\"Külső\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Megjelenítési beállítások\",\"FpsvqB\":\"Megjelenítési mód\",\"vXIe7J\":\"Nyelv\",\"T/IST7\":\"Újdonság: Felhasználói felület\",\"gSWyZa\":\"Új felhasználói felületet készítünk modern alapokon. Ugyan a jelenlegi állapot nem végleges és még át is lesz alakítva, de szemlélteti a felhasználói felület és élmény jövőbeli lehetőségeit.\",\"GNA6/Q\":\"Visszajelzés küldése\",\"7hktsm\":\"Első lépések\",\"jFggGL\":\"Nem sikerült a kép feltöltése\",\"BtQ2Mv\":\"Megjegyzések elmentve\",\"vBI46M\":\"Megjegyzések mentése nem sikerült\",\"rdU729\":\"Elrendezés\",\"Nw+C4g\":\"Elrendezés visszaállítása\",\"fOql7D\":\"Szerkesztés befejezése\",\"NZubw3\":\"Elrendezés szerkesztése\",\"aAIQg2\":\"Megjelenítés\",\"cG3uIP\":\"Dobozok megjelenítése\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Értesítésre beállított alkatrészek\",\"GuGbPw\":\"Értesítésre beállított kategóriák\",\"LcKNFQ\":\"Legújabb alkatrészek\",\"eHUZsJ\":\"Jóváhagyásra váró alkatrészjegyzék\",\"ZopSbj\":\"Nemrég frissítve\",\"Onj2Pw\":\"Kimerült készlet\",\"Iq/utX\":\"Gyártáshoz szükséges\",\"ZOsmSm\":\"Lejárt készlet\",\"kc9cAF\":\"Állott készlet\",\"zLhIiS\":\"Folyamatban lévő gyártások\",\"UBWkDy\":\"Késésben lévő gyártások\",\"WsHr9R\":\"Kintlévő beszerzési rendelések\",\"fCNzWA\":\"Késésben lévő beszerzések\",\"gyZThB\":\"Függő vevői rendelések\",\"Gu8K8T\":\"Késésben lévő vevői rendelések\",\"XzTq3p\":\"Jelenlegi hírek\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demó\",\"i0qMbr\":\"Főoldal\",\"7p5kLi\":\"Irányítópult\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Játszótér\",\"4GLxhy\":\"Első lépések\",\"VAYCzI\":\"Első lépések az InvenTree-vel\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API dokumentáció\",\"BOAupq\":\"Fejlesztői dokumentáció\",\"kUcL4g\":\"InvenTree fejlesztői dokumentáció\",\"/lDBHm\":\"GYIK\",\"a3pVqb\":\"Gyakran ismételt kérdések\",\"kyAi7k\":\"Példány\",\"Q5S3DY\":\"InvenTree példány névjegye\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"Az inventree.org-ról\",\"snyG+w\":\"Licencek\",\"tBjIo1\":\"Az InvenTree által használt csomagok licencei\",\"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\":\"Profil oldal\",\"CFYxhi\":\"Felhasználói beállítások\",\"uP4V6I\":\"Free for everyone\",\"dyMOjI\":\"The fluid of Smeargle’s tail secretions changes\",\"PrR19h\":\"Nézet interaktív szkenneléshez és más műveletekhez.\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Sikeres kijelentkezés\",\"aJhI/3\":\"Hamarosan találkozunk.\",\"eX0txO\":\"Nézd meg a beérkező levelek mappájában a visszaállítási linket. Ez csak akkor működik, ha van fiókod. Ellenőrizd a spameket is.\",\"WhimMi\":\"Visszaállítás sikertelen\",\"iVj6ge\":\"Már bejelentkeztél\",\"FR/+0K\":\"Van ilyen login - azt használom a belépéshez.\",\"3X1ZLb\":\"Form hiba\",\"x5LTam\":\"Form metódus nincs megadva\",\"Y/uvnA\":\"A válaszban nincs művelet adat\",\"Pya8ub\":\"Érvénytelen űrlap\",\"D6wyts\":\"metódus paraméter nem támogatott\",\"8uQpHD\":\"Fájl hozzáadása\",\"V4WsyL\":\"Link hozzáadása\",\"TzSMET\":\"Fájl hozzáadva\",\"GvlLvd\":\"Link hozzáadva\",\"xtmR+6\":\"Fájl szerkesztése\",\"gDx5MG\":\"Link szerkesztése\",\"TKcCLO\":\"Fájl frissítve\",\"AEUkAQ\":\"Link frissítve\",\"hZfPb3\":\"Melléklet törlése\",\"iDEbsu\":\"Melléklet törölve\",\"1oL0IJ\":\"Biztos törölni akarod ezt a mellékletet?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Alkatrész létrehozása\",\"LDesI6\":\"Alkatrész létrehozva\",\"enG3o5\":\"Alkatrész szerkesztése\",\"+g4LWF\":\"Alkatrész frissítve\",\"oATGL2\":\"Felsőbb szintű alkatrész kategória\",\"qyS7x9\":\"Mennyiség hozzáadása csomagolási egységenként egyedi tételek helyett\",\"LWFE8j\":\"Add meg a kezdeti mennyiséget ehhez a készlet tételhez\",\"VzQT2x\":\"Sorozatszámok\",\"0dR85g\":\"Add meg az új készlet tételhez tartozó sorozatszámokat (vagy hagyd üresen)\",\"4xXnZr\":\"Készlet tétel létrehozása\",\"gQgYNs\":\"Készlet tétel szerkesztése\",\"ipE2p4\":\"Nincs implementálva\",\"WvSApV\":\"Ez a funkció még nem készült el\",\"sJK6pq\":\"Engedély megtagadva\",\"3WjGlZ\":\"Nincs jogosultságod ehhez a művelethez\",\"J7PX+R\":\"Érvénytelen visszatérési kód\",\"78bD8l\":[\"Szerver válaszkódja \",[\"returnCode\"]],\"ps9k8Y\":\"Ellenőrzöm hogy be vagy-e már jelentkezve\",\"bX1aQ5\":\"Nincs kijelölés\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Email küldése\",\"eV2FZ+\":\"Érvénytelen token\",\"uAHzZQ\":\"Új jelszó beállításához meg kell adnod egy érvényes tokent. Nézd meg a beérkező levelek mappájában a visszaállítási linket.\",\"+5xxir\":\"Nincs token megadva\",\"KuLTFa\":\"Új jelszó beállításához meg kell adnod egy tokent. Nézd meg a beérkező levelek mappájában a visszaállítási linket.\",\"Hw2MHB\":\"Jelszó beállítva\",\"+p8fKY\":\"A jelszó beállítása sikeresen megtörtént. Most már bejelentkezhetsz az új jelszavaddal\",\"V/e7nf\":\"Új jelszó beállítása\",\"TpqeIh\":[\"Hiba: \",[\"0\"]],\"b3ilvM\":\"Elnézést, váratlan hiba történt.\",\"edpMcF\":\"Automatikus frissítés\",\"0s/I4H\":\"Ez az oldal helyettesíti a régi kezdőoldalt, ugyanazokkal az információkkal. Ez az oldal hamarosan elavulttá válik, és helyébe a kezdőlap lép.\",\"2DfxO0\":[\"Irányítópult: \",[\"0\"]],\"ZLvUR5\":\"Ez az oldal a Platform UI lehetőségeit mutatja be.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"Felhasználói Információ\",\"JOUEkZ\":[\"Keresztnév: \",[\"0\"]],\"GlGzeI\":[\"Családi név: \",[\"0\"]],\"PkcDO7\":[\"Felhasználónév: \",[\"0\"]],\"PsXasD\":\"Használj pszeudo nyelvet\",\"M46ISI\":\"oszlopok\",\"Ai6veK\":\"ovális\",\"8zGXnJ\":\"pontok\",\"gDIqhx\":\"Dizájn <0/>\",\"QFd2P1\":\"Elsődleges szín\",\"160vo+\":\"Fehér szín\",\"u01284\":\"Fekete szín\",\"bjp1xg\":\"Szegély sugár\",\"EBeoY+\":\"Betöltő\",\"pS7MTY\":\"Kézi bevitel\",\"29Om2/\":\"Vonalkód képe\",\"dQStih\":\"Kiválasztott elemek ismeretlenek\",\"Oik3bo\":\"Többféle objektum típus lett kiválasztva\",\"RlLl3G\":[[\"0\"],\" műveletei\"],\"wBMjJ2\":\"Mennyiség\",\"T2Wq4D\":\"Kódolvasó lap\",\"cXiEKg\":\"Lap a tételek folyamatos kódolvasására és műveleteire.\",\"qBZttg\":\"Válassz beviteli módot a tételek beolvasásához.\",\"XU5AOg\":\"Bevitel\",\"kY/87m\":\"Beviteli mód kiválasztása\",\"ow3fug\":\"Nincs találat\",\"66J/c0\":\"A kiválasztott alkatrészektől függő műveletek jelennek meg itt. Jelenleg nem minden vonalkód támogatott.\",\"bwRvnp\":\"Művelet\",\"sQhVFe\":[[\"0\"],\" kiválasztott tétel\"],\"U+sonC\":\"Általános műveletek\",\"H8H7u6\":\"Alkatrész keresés\",\"sliuzR\":\"Link megnyitása\",\"mM7dgZ\":\"Az előzmények lokálisan a böngészőben tárolódnak.\",\"s9lCxX\":\"Az előzmények a böngésző helyi tárhelyén tárolódnak. Így nem lesz megosztva más felhasználókkal vagy más eszközökkel, de az újratöltések során megmarad. Kijelölhetsz elemeket az előzményekből, hogy műveleteket hajts végre rajtuk. Elemek hozzáadásához szkennelje be/írja be azokat a beviteli területen.\",\"0caMy7\":\"Előzmények\",\"nB43gC\":\"Nincs előzmény\",\"HX5SVx\":\"Tétel\",\"+zy2Nq\":\"Típus\",\"wdxz7K\":\"Forrás\",\"PvB8gr\":\"Szkennelve ekkor\",\"mPrJo6\":\"Add meg a tétel szériaszámát vagy adatát\",\"gUm1Y0\":\"Ál-tétel hozzáadása\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Árazás\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Gyártási utasítások\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Nem található\",\"FeQ++0\":\"Elnézést, ez az oldal ismeretlen vagy el lett mozgatva.\",\"wmCIch\":\"Ugrás a kezdőlapra\",\"5GPcf9\":\"Megjelölés olvasatlanként\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Gyártás részletei\",\"L1LMmH\":\"Készlet foglalása\",\"E9en8O\":\"Befejezetlen kimenetek\",\"Mzv4va\":\"Befejezett kimenetek\",\"US3GCq\":\"Felhasznált készlet\",\"CVlgqS\":\"Alárendelt gyártások\",\"w/Sphq\":\"Mellékletek\",\"1DBGsz\":\"Megjegyzések\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Gyártási utasítás\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"Új gyártási utasítás\",\"URmyfc\":\"Részletek\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Paraméterek\",\"SDRhYQ\":\"Változatok\",\"/637F4\":\"Alkatrészjegyzék\",\"5M5Kdm\":\"Felhasználva ebben\",\"9RecCt\":\"Beszállítók\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Teszt sablonok\",\"AAoGm5\":\"Kapcsolódó alkatrészek\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Készlettörténet\",\"KwhnxF\":\"Foglalások\",\"xnskHi\":\"Beépített tételek\",\"K4v96J\":\"Gyermek tételek\",\"OWg6Ht\":\"Mobil kijelző érzékelve\",\"j1oKmM\":\"A platform felhasználói felülete táblagépekre és asztali számítógépekre van optimalizálva, a használd a hivatalos alkalmazást a mobilon.\",\"NtcqDr\":\"Olvasd el a dokumentációt\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/it/messages.ts b/src/frontend/src/locales/it/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/it/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/ja/messages.ts b/src/frontend/src/locales/ja/messages.ts deleted file mode 100644 index ea9df0ee7d..0000000000 --- a/src/frontend/src/locales/ja/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"タイトル\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"キャンセル\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"ユーザー名\",\"8ZsakT\":\"パスワード\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"パスワードを再設定\",\"O3oNi5\":\"メールアドレス\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"名前\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"ホストを追加\",\"tfDRzk\":\"保存\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"エラー\",\"A1taO8\":\"Search\",\"yQE2r9\":\"読み込み中\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"サムネイル\",\"IvkbIT\":\"続きを読む\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree ロゴ\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"プロフィール\",\"Tz0i8g\":\"設定\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"ログアウト\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"既読にする\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"パーツ\",\"pmRbKZ\":\"パーツ\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"在庫商品\",\"Jbck4N\":\"在庫商品\",\"adXdas\":\"在庫場所\",\"1eBWAw\":\"在庫場所\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"ユーザー\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"フィルタを削除\",\"N73rrp\":\"表フィルタを追加\",\"ot7qsv\":\"すべてのフィルタを解除\",\"vCSBPD\":\"フィルタを追加\",\"c+xCSz\":\"はい\",\"ocUvR+\":\"いいえ\",\"jpXCTI\":\"表フィルタを追加\",\"R39XGq\":\"有効なフィルタから選択\",\"o7J4JM\":\"フィルタ\",\"hpMOSe\":\"フィルタを選択\",\"wMHvYH\":\"値\",\"Fo55lj\":\"フィルタの値を選択\",\"PzFzS+\":\"フィルタを追加\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"表フィルタ\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"説明\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"編集\",\"cnGeoo\":\"削除\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"在庫\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"有効なパーツでフィルタ\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"サブカテゴリを含む\",\"5JhtGd\":\"サブカテゴリのパーツを含む\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"コンポーネント属性でフィルタ\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"追跡可能属性でフィルタ\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"単位のある部品でフィルタ\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"在庫がある部品でフィルタ\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"購入可能な部品でフィルタ\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"販売可能な部品でフィルタ\",\"ksX7Wx\":\"仮想部品\",\"QDTpY6\":\"仮想部品でフィルタ\",\"+SkaI8\":\"仮想部品ではない\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"場所\",\"VikQny\":\"テストフィルタ\",\"ay6lVf\":\"これはテストフィルタです\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"場所タイプ\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"言語\",\"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\":\"メモを保存しました\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"よくある質問\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"ライセンス\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"8uQpHD\":\"ファイルを追加\",\"V4WsyL\":\"Add Link\",\"TzSMET\":\"File added\",\"GvlLvd\":\"Link added\",\"xtmR+6\":\"Edit File\",\"gDx5MG\":\"Edit Link\",\"TKcCLO\":\"File updated\",\"AEUkAQ\":\"Link updated\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"この商品の初期数量を入力\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"在庫商品を追加\",\"gQgYNs\":\"在庫商品を編集\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"新しいパスワードを設定\",\"TpqeIh\":[\"エラー:\",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"ユーザー情報\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"U+sonC\":\"General Actions\",\"H8H7u6\":\"Lookup part\",\"sliuzR\":\"リンクを開く\",\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"価格\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"見つかりません\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"未読にする\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"添付ファイル\",\"1DBGsz\":\"メモ\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"詳細\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/ko/messages.ts b/src/frontend/src/locales/ko/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/ko/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/nl/messages.ts b/src/frontend/src/locales/nl/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/nl/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/no/messages.ts b/src/frontend/src/locales/no/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/no/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/pl/messages.ts b/src/frontend/src/locales/pl/messages.ts deleted file mode 100644 index 1cac199c46..0000000000 --- a/src/frontend/src/locales/pl/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Tytuł\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/pseudo-LOCALE/messages.ts b/src/frontend/src/locales/pseudo-LOCALE/messages.ts deleted file mode 100644 index 4200ae0184..0000000000 --- a/src/frontend/src/locales/pseudo-LOCALE/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Ţĩţĺē\",\"zzDlyQ\":\"Śũććēśś\",\"rl7FGt\":\"Ƒōŕm Ēŕŕōŕś Ēxĩśţ\",\"dEgA5A\":\"Ćàńćēĺ\",\"hQRttt\":\"Śũƀmĩţ\",\"4GKuCs\":\"Ĺōĝĩń ƒàĩĺēď\",\"tnaYa/\":\"Ćĥēćķ ŷōũŕ ĩńƥũţ àńď ţŕŷ àĝàĩń.\",\"jCsNQS\":\"Ćĥēćķ ŷōũŕ ŷōũŕ ĩńƥũţ àńď ţŕŷ àĝàĩń.\",\"6cPKtu\":\"Ĺōĝĩń śũććēśśƒũĺ\",\"rxWA39\":\"Ŵēĺćōmē ƀàćķ!\",\"zM9Wd+\":\"Ĺōĝĩń śũććēśśƒũĺĺ\",\"XAIcYu\":\"Màĩĺ ďēĺĩvēŕŷ śũććēśśƒũĺ\",\"R2JMfc\":\"Ćĥēćķ ŷōũŕ ĩńƀōx ƒōŕ ţĥē ĺōĝĩń ĺĩńķ. Ĩƒ ŷōũ ĥàvē àń àććōũńţ, ŷōũ ŵĩĺĺ ŕēćēĩvē à ĺōĝĩń ĺĩńķ. Ćĥēćķ ĩń śƥàm ţōō.\",\"yfblq9\":\"Màĩĺ ďēĺĩvēŕŷ śũććēśśƒũĺĺ\",\"ccnxuA\":\"Ĩńƥũţ ēŕŕōŕ\",\"BL4vL0\":\"Ŵēĺćōmē, ĺōĝ ĩń ƀēĺōŵ\",\"7sNhEz\":\"Ũśēŕńàmē\",\"8ZsakT\":\"Ƥàśśŵōŕď\",\"9TO8nT\":\"Ŷōũŕ ƥàśśŵōŕď\",\"RfwZxd\":\"Ŕēśēţ ƥàśśŵōŕď\",\"O3oNi5\":\"Ēmàĩĺ\",\"Wr5sDQ\":\"Ŵē ŵĩĺĺ śēńď ŷōũ à ĺĩńķ ţō ĺōĝĩń - ĩƒ ŷōũ àŕē ŕēĝĩśţēŕēď\",\"sQia9P\":\"Ĺōĝ ĩń\",\"7ZOmjI\":\"Śēńď mē àń ēmàĩĺ\",\"XlWstl\":\"Ĩ ŵĩĺĺ ũśē ũśēŕńàmē àńď ƥàśśŵōŕď\",\"ADVQ46\":\"Ĺōĝ Ĩń\",\"i/TzEU\":\"Śēńď Ēmàĩĺ\",\"Ai2U7L\":\"Ĥōśţ\",\"6YtxFj\":\"Ńàmē\",\"yWMzcH\":\"Ńō ōńē ĥēŕē...\",\"UYWLpE\":\"Àďď Ĥōśţ\",\"tfDRzk\":\"Śàvē\",\"GG8+B2\":\"Śēĺēćţ ďēśţĩńàţĩōń ĩńśţàńćē\",\"uqEJlE\":\"Ēďĩţ ƥōśśĩƀĺē ĥōśţ ōƥţĩōńś\",\"GUtCZC\":[\"Vēŕśĩōń: \",[\"0\"]],\"4/F1y3\":[\"ÀƤĨ:\",[\"0\"]],\"UVRlfm\":[\"Ńàmē: \",[\"0\"]],\"ed0N/H\":[\"Śţàţē: <0>ŵōŕķēŕ (\",[\"0\"],\"), <1>ƥĺũĝĩńś\",[\"1\"]],\"SlfejT\":\"Ēŕŕōŕ\",\"A1taO8\":\"Śēàŕćĥ\",\"yQE2r9\":\"Ĺōàďĩńĝ\",\"AxPAXW\":\"Ńō ŕēśũĺţś ƒōũńď\",\"sGeXL3\":\"Ţĥũmƀńàĩĺ\",\"IvkbIT\":\"Ŕēàď Mōŕē\",\"29VNqC\":\"Ũńķńōŵń ēŕŕōŕ\",\"nlJhkA\":\"Àń ēŕŕōŕ ōććũŕŕēď:\",\"Qoq+GP\":\"Ŕēàď mōŕē\",\"DVAy0b\":\"ĨńvēńŢŕēē Ĺōĝō\",\"3TnJRX\":\"Ţĥĩś ƒēàţũŕē/ƀũţţōń/śĩţē ĩś à ƥĺàćēĥōĺďēŕ ƒōŕ à ƒēàţũŕē ţĥàţ ĩś ńōţ ĩmƥĺēmēńţēď, ōńĺŷ ƥàŕţĩàĺ ōŕ ĩńţēńďēď ƒōŕ ţēśţĩńĝ.\",\"etqXdW\":\"ƤĹĤ\",\"Uox1LM\":\"Ţĥĩś ƥàńēĺ ĩś à ƥĺàćēĥōĺďēŕ.\",\"XDwkfO\":\"Śćàń ǪŔ ćōďē\",\"l75CjT\":\"Ŷēś\",\"1UzENP\":\"Ńō\",\"GU7xAr\":\"Ũńķńōŵń ŕēśƥōńśē\",\"UHot+L\":\"Ēŕŕōŕ ŵĥĩĺē ĝēţţĩńĝ ćàmēŕà\",\"bR26mb\":\"Ēŕŕōŕ ŵĥĩĺē śćàńńĩńĝ\",\"fvJQqd\":\"Ēŕŕōŕ ŵĥĩĺē śţōƥƥĩńĝ\",\"CMQ09J\":\"Śćàńńĩńĝ\",\"Fg9r/3\":\"Ńōţ śćàńńĩńĝ\",\"QuNKRX\":\"Śēĺēćţ Ćàmēŕà\",\"m3BKG+\":\"Śţàŕţ śćàńńĩńĝ\",\"yFRXH8\":\"Śţōƥ śćàńńĩńĝ\",\"3164SS\":\"Ńō śćàńś ŷēţ!\",\"RWw9Lg\":\"Ćĺōśē mōďàĺ\",\"vERlcd\":\"Ƥŕōƒĩĺē\",\"Tz0i8g\":\"Śēţţĩńĝś\",\"T3FM0r\":\"Àććōũńţ śēţţĩńĝś\",\"zNkWa6\":\"Śŷśţēm Śēţţĩńĝś\",\"ohUJJM\":\"Ƥĺũĝĩńś\",\"r5Xdbs\":[\"Ćũŕŕēńţ ĺàńĝũàĝē \",[\"locale\"]],\"XXvCbv\":\"Śŵĩţćĥ ţō ƥśēũďō ĺàńĝũàĝē\",\"nOhz3x\":\"Ĺōĝōũţ\",\"rmlxV1\":\"Ōƥēń Ńàvĩĝàţĩōń\",\"N6Pxr9\":\"Vĩēŵ àĺĺ\",\"ZDIydz\":\"Ĝēţ śţàŕţēď\",\"BQDL+H\":\"Ōvēŕvĩēŵ ōvēŕ ĥĩĝĥ-ĺēvēĺ ōƀĴēćţś, ƒũńćţĩōńś àńď ƥōśśĩƀĺē ũśēćàśēś.\",\"UxKoFf\":\"Ńàvĩĝàţĩōń\",\"wRR604\":\"Ƥàĝēś\",\"TvY/XA\":\"Ďōćũmēńţàţĩōń\",\"uyJsf6\":\"Àƀōũţ\",\"iDNBZe\":\"Ńōţĩƒĩćàţĩōńś\",\"t2pqHO\":\"Ŷōũ ĥàvē ńō ũńŕēàď ńōţĩƒĩćàţĩōńś.\",\"+s1J8k\":\"Màŕķ àś ŕēàď\",\"mO8KLE\":\"ŕēśũĺţś\",\"Dwt0g3\":\"Ēńţēŕ śēàŕćĥ ţēxţ\",\"9UYKcs\":\"Śēàŕćĥ Ōƥţĩōńś\",\"qkCZlJ\":\"Ŕēĝēx śēàŕćĥ\",\"roauu/\":\"Ŵĥōĺē ŵōŕď śēàŕćĥ\",\"hJCuaV\":\"Àń ēŕŕōŕ ōććũŕŕēď ďũŕĩńĝ śēàŕćĥ ǫũēŕŷ\",\"Ev2r9A\":\"Ńō ŕēśũĺţś\",\"dTtbrX\":\"Ńō ŕēśũĺţś àvàĩĺàƀĺē ƒōŕ śēàŕćĥ ǫũēŕŷ\",\"5iarLn\":[\"Ũńķńōŵń mōďēĺ: \",[\"model\"]],\"vgP+9p\":\"Ƥàŕţ\",\"pmRbKZ\":\"Ƥàŕţś\",\"hAddRl\":\"Ƥàŕţ Ƥàŕàmēţēŕ Ţēmƥĺàţē\",\"UrnQgP\":\"Ƥàŕţ Ƥàŕàmēţēŕ Ţēmƥĺàţēś\",\"nne72x\":\"Śũƥƥĺĩēŕ Ƥàŕţ\",\"FcNRrt\":\"Śũƥƥĺĩēŕ Ƥàŕţś\",\"bisS0I\":\"Màńũƒàćţũŕēŕ Ƥàŕţ\",\"d0fBfb\":\"Màńũƒàćţũŕēŕ Ƥàŕţś\",\"QXANxH\":\"Ƥàŕţ Ćàţēĝōŕŷ\",\"2GkbLI\":\"Ƥàŕţ Ćàţēĝōŕĩēś\",\"igx8Og\":\"Śţōćķ Ĩţēm\",\"Jbck4N\":\"Śţōćķ Ĩţēmś\",\"adXdas\":\"Śţōćķ Ĺōćàţĩōń\",\"1eBWAw\":\"Śţōćķ Ĺōćàţĩōńś\",\"cE4TWF\":\"Śţōćķ Ĥĩśţōŕŷ\",\"rewkgt\":\"Śţōćķ Ĥĩśţōŕĩēś\",\"iSiFYa\":\"ßũĩĺď\",\"3400Lv\":\"ßũĩĺďś\",\"7i8j3G\":\"Ćōmƥàńŷ\",\"s2QZS6\":\"Ćōmƥàńĩēś\",\"KxySMG\":\"Ƥũŕćĥàśē Ōŕďēŕ\",\"85Yvr2\":\"Ƥũŕćĥàśē Ōŕďēŕś\",\"Enr0Pf\":\"Ƥũŕćĥàśē Ōŕďēŕ Ĺĩńē\",\"MXjnQS\":\"Ƥũŕćĥàśē Ōŕďēŕ Ĺĩńēś\",\"LozYBo\":\"Śàĺēś Ōŕďēŕ\",\"B1TL+X\":\"Śàĺēś Ōŕďēŕś\",\"qGSobR\":\"Śàĺēś Ōŕďēŕ Śĥĩƥmēńţ\",\"D/EkfS\":\"Śàĺēś Ōŕďēŕ Śĥĩƥmēńţś\",\"Z6ve1w\":\"Ŕēţũŕń Ōŕďēŕ\",\"LlTg8M\":\"Ŕēţũŕń Ōŕďēŕś\",\"Du6bPw\":\"Àďďŕēśś\",\"bYmAV1\":\"Àďďŕēśśēś\",\"jfC/xh\":\"Ćōńţàćţ\",\"gVfVfe\":\"Ćōńţàćţś\",\"LtI9AS\":\"Ōŵńēŕ\",\"CYRJEX\":\"Ōŵńēŕś\",\"7PzzBU\":\"Ũśēŕ\",\"Sxm8rQ\":\"Ũśēŕś\",\"4fws5M\":\"Śĥĩƥmēńţ\",\"C3htzi\":\"Śēţţĩńĝ ũƥďàţēď\",\"FImCSc\":[[\"0\"],\" ũƥďàţēď śũććēśśƒũĺĺŷ\"],\"CsUgn+\":\"Ēŕŕōŕ ēďĩţĩńĝ śēţţĩńĝ\",\"mjN1LS\":\"Ēďĩţ Śēţţĩńĝ\",\"kCTFU8\":\"Śēĺēćţ Ćōĺũmńś\",\"6N5Lt+\":\"ĆŚV\",\"Keu6yk\":\"ŢŚV\",\"UR8vqQ\":\"Ēxćēĺ\",\"w+nnwj\":\"Ďōŵńĺōàď śēĺēćţēď ďàţà\",\"rn2/2V\":\"Ŕēmōvē ƒĩĺţēŕ\",\"N73rrp\":\"Àďď ţàƀĺē ƒĩĺţēŕ\",\"ot7qsv\":\"Ćĺēàŕ àĺĺ ƒĩĺţēŕś\",\"vCSBPD\":\"Àďď ƒĩĺţēŕ\",\"c+xCSz\":\"Ţŕũē\",\"ocUvR+\":\"Ƒàĺśē\",\"jpXCTI\":\"Àďď Ţàƀĺē Ƒĩĺţēŕ\",\"R39XGq\":\"Śēĺēćţ ƒŕōm ţĥē àvàĩĺàƀĺē ƒĩĺţēŕś\",\"o7J4JM\":\"Ƒĩĺţēŕ\",\"hpMOSe\":\"Śēĺēćţ ƒĩĺţēŕ\",\"wMHvYH\":\"Vàĺũē\",\"Fo55lj\":\"Śēĺēćţ ƒĩĺţēŕ vàĺũē\",\"PzFzS+\":\"Àďď Ƒĩĺţēŕ\",\"EqGTpW\":\"Ńō ŕēćōŕďś ƒōũńď\",\"3o3AAs\":\"Śēŕvēŕ ŕēţũŕńēď ĩńćōŕŕēćţ ďàţà ţŷƥē\",\"UFBeQV\":\"ßàď ŕēǫũēśţ\",\"dA/8If\":\"Ũńàũţĥōŕĩźēď\",\"7JBW66\":\"Ƒōŕƀĩďďēń\",\"KPx1UV\":\"Ńōţ ƒōũńď\",\"v1qpjB\":\"ßàŕćōďē àćţĩōńś\",\"inVgrM\":\"Ƥŕĩńţ àćţĩōńś\",\"8RYNR1\":\"Ŕēƒŕēśĥ ďàţà\",\"j2wMlR\":\"Ţàƀĺē ƒĩĺţēŕś\",\"7L01XJ\":\"Àćţĩōńś\",\"N2C89m\":\"Ŕēƒēŕēńćē\",\"Nu4oKW\":\"Ďēśćŕĩƥţĩōń\",\"Sdfr6G\":\"ƤŕōĴēćţ Ćōďē\",\"VbWX2u\":\"Ǫũàńţĩţŷ\",\"qqWcBV\":\"Ćōmƥĺēţēď\",\"uAQUqI\":\"Śţàţũś\",\"1hKEom\":\"Ƥŕĩōŕĩţŷ\",\"d+F6q9\":\"Ćŕēàţēď\",\"ZmykKo\":\"Ţàŕĝēţ Ďàţē\",\"kmUN8p\":\"Ĩśśũēď ßŷ\",\"XQACoK\":\"Ŕēśƥōńśĩƀĺē\",\"UY1vmE\":\"Àţţàćĥmēńţ\",\"NBdIgR\":\"Ćōmmēńţ\",\"3wG7HI\":\"Ũƥĺōàďēď\",\"ePK91l\":\"Ēďĩţ\",\"cnGeoo\":\"Ďēĺēţē\",\"FJqE4H\":\"Ƒĩĺē ũƥĺōàďēď\",\"3LxYDr\":[\"Ƒĩĺē \",[\"0\"],\" ũƥĺōàďēď śũććēśśƒũĺĺŷ\"],\"ae3dey\":\"Ũƥĺōàď Ēŕŕōŕ\",\"GZnmeE\":\"Ƒĩĺē ćōũĺď ńōţ ƀē ũƥĺōàďēď\",\"V8euYO\":\"Àďď àţţàćĥmēńţ\",\"DpV4ac\":\"Àďď ēxţēŕńàĺ ĺĩńķ\",\"32o8IC\":\"Ńō àţţàćĥmēńţś ƒōũńď\",\"VHmXZm\":\"Ũƥĺōàď àţţàćĥmēńţ\",\"zGbOVS\":\"Ćōmƥàńŷ Ńàmē\",\"On0aF2\":\"Ŵēƀśĩţē\",\"RCU5PY\":\"Àĝē\",\"K7tIrx\":\"Ćàţēĝōŕŷ\",\"5+87Pq\":\"Ńōţĩƒĩćàţĩōń\",\"xDAtGP\":\"Mēśśàĝē\",\"I6gXOa\":\"Ƥàţĥ\",\"T/87By\":\"Ƥàŕàmēţēŕ\",\"QrhaVg\":\"Ũńĩţś\",\"ZqLOh/\":\"Ēďĩţ Ƥàŕţ Ƥàŕàmēţēŕ\",\"xr44aD\":\"Ƥàŕţ ƥàŕàmēţēŕ ũƥďàţēď\",\"uuJqm+\":\"Ďēĺēţē Ƥàŕţ Ƥàŕàmēţēŕ\",\"uiC/uu\":\"Ƥàŕţ ƥàŕàmēţēŕ ďēĺēţēď\",\"dfMVxh\":\"Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ţĥĩś ƥàŕàmēţēŕ?\",\"iwRvX8\":\"Àďď Ƥàŕţ Ƥàŕàmēţēŕ\",\"wzEEM5\":\"Ƥàŕţ ƥàŕàmēţēŕ àďďēď\",\"2tuwGz\":\"Àďď ƥàŕàmēţēŕ\",\"/g9i/Z\":\"Ĩńćĺũďē Vàŕĩàńţś\",\"3wXEsN\":\"ĨƤŃ\",\"blbbPS\":\"Śţōćķ\",\"YA4hwj\":\"Ƥŕĩćē Ŕàńĝē\",\"yzF66j\":\"Ĺĩńķ\",\"F6pfE9\":\"Àćţĩvē\",\"PHri/6\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţ àćţĩvē śţàţũś\",\"WL36Yh\":\"Àśśēmƀĺŷ\",\"oQzKsK\":\"Ƒĩĺţēŕ ƀŷ àśśēmƀĺŷ àţţŕĩƀũţē\",\"NgZniC\":\"Ĩńćĺũďē Śũƀćàţēĝōŕĩēś\",\"5JhtGd\":\"Ĩńćĺũďē ƥàŕţś ĩń śũƀćàţēĝōŕĩēś\",\"dK3Z9j\":\"Ćōmƥōńēńţ\",\"oO7QIX\":\"Ƒĩĺţēŕ ƀŷ ćōmƥōńēńţ àţţŕĩƀũţē\",\"y6MnU0\":\"Ţŕàćķàƀĺē\",\"MbixSq\":\"Ƒĩĺţēŕ ƀŷ ţŕàćķàƀĺē àţţŕĩƀũţē\",\"YyRdJQ\":\"Ĥàś Ũńĩţś\",\"WyFVby\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ ĥàvē ũńĩţś\",\"c9/Fqb\":\"Ĥàś ĨƤŃ\",\"jh/Aa+\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ ĥàvē àń ĩńţēŕńàĺ ƥàŕţ ńũmƀēŕ\",\"JqmfuT\":\"Ĥàś Śţōćķ\",\"6Kd+HK\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ ĥàvē śţōćķ\",\"UgdO7s\":\"Ĺōŵ Śţōćķ\",\"GDYPCw\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ ĥàvē ĺōŵ śţōćķ\",\"TW9g28\":\"Ƥũŕćĥàśēàƀĺē\",\"KMdl2R\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ àŕē ƥũŕćĥàśēàƀĺē\",\"/3xNJ4\":\"Śàĺàƀĺē\",\"V5i7hf\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ àŕē śàĺàƀĺē\",\"ksX7Wx\":\"Vĩŕţũàĺ\",\"QDTpY6\":\"Ƒĩĺţēŕ ƀŷ ƥàŕţś ŵĥĩćĥ àŕē vĩŕţũàĺ\",\"+SkaI8\":\"Ńōţ Vĩŕţũàĺ\",\"rRDi3Y\":\"Ďēţàĩĺ\",\"K0+pq1\":\"Àďď Ŕēĺàţēď Ƥàŕţ\",\"Vssu+n\":\"Ŕēĺàţēď Ƥàŕţ\",\"yxfxt9\":\"Ŕēĺàţēď ƥàŕţ àďďēď\",\"xG+5dj\":\"Àďď ŕēĺàţēď ƥàŕţ\",\"/kFxhJ\":\"Ďēĺēţē Ŕēĺàţēď Ƥàŕţ\",\"oNps5U\":\"Ŕēĺàţēď ƥàŕţ ďēĺēţēď\",\"ZKMkzF\":\"Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ţĥĩś ŕēĺàţĩōńśĥĩƥ?\",\"QqLLp2\":\"Ƥĺũĝĩń ĩś àćţĩvē\",\"s99Mc1\":\"Ƥĺũĝĩń ĩś ĩńàćţĩvē\",\"LtEW/l\":\"Ƥĺũĝĩń ĩś ńōţ ĩńśţàĺĺēď\",\"fOuPPd\":\"Ƥĺũĝĩń\",\"9YdyZU\":\"Ďēśćŕĩƥţĩōń ńōţ àvàĩĺàƀĺē\",\"eE0JZ4\":\"Vēŕśĩōń\",\"5y3O+A\":\"Ďēàćţĩvàţē\",\"FQBaXG\":\"Àćţĩvàţē\",\"++LBSt\":\"ßũĩĺţĩń\",\"LcJmOR\":\"Śàmƥĺē\",\"eQkgKV\":\"Ĩńśţàĺĺēď\",\"PYTEl0\":\"Śũƥƥĺĩēŕ\",\"K7PVg3\":\"Śũƥƥĺĩēŕ Ŕēƒēŕēńćē\",\"SgduFH\":\"Ĺĩńē Ĩţēmś\",\"876pfE\":\"Ćũśţōmēŕ\",\"ZVUe1A\":\"Ćũśţōmēŕ Ŕēƒēŕēńćē\",\"MbRyzp\":\"Ďēƒĩńĩţĩōń\",\"8Ps70y\":\"Śŷmƀōĺ\",\"I0CAZ4\":\"Ēďĩţ ćũśţōm ũńĩţ\",\"JOoGLt\":\"Ćũśţōm ũńĩţ ũƥďàţēď\",\"2351D8\":\"Ďēĺēţē ćũśţōm ũńĩţ\",\"ik2+Rh\":\"Ćũśţōm ũńĩţ ďēĺēţēď\",\"jB4fNr\":\"Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ţĥĩś ćũśţōm ũńĩţ?\",\"VzcXtA\":\"Àďď ćũśţōm ũńĩţ\",\"2Aout5\":\"Ćũśţōm ũńĩţ ćŕēàţēď\",\"NsoM0i\":\"Ēďĩţ ƥŕōĴēćţ ćōďē\",\"IKDsBC\":\"ƤŕōĴēćţ ćōďē ũƥďàţēď\",\"imeh6U\":\"Ďēĺēţē ƥŕōĴēćţ ćōďē\",\"XVAUxk\":\"ƤŕōĴēćţ ćōďē ďēĺēţēď\",\"fwToP9\":\"Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ŕēmōvē ţĥĩś ƥŕōĴēćţ ćōďē?\",\"6K55qI\":\"Àďď ƥŕōĴēćţ ćōďē\",\"lCmbZd\":\"Àďďēď ƥŕōĴēćţ ćōďē\",\"rsx3xA\":\"ßàţćĥ\",\"wJijgU\":\"Ĺōćàţĩōń\",\"VikQny\":\"Ţēśţ Ƒĩĺţēŕ\",\"ay6lVf\":\"Ţĥĩś ĩś à ţēśţ ƒĩĺţēŕ\",\"PRKZBP\":\"Śţŕũćţũŕàĺ\",\"bVhrVt\":\"Ēxţēŕńàĺ\",\"4sg5Qp\":\"Ĺōćàţĩōń Ţŷƥē\",\"DdjH42\":\"Ďĩśƥĺàŷ Śēţţĩńĝś\",\"FpsvqB\":\"Ćōĺōŕ Mōďē\",\"vXIe7J\":\"Ĺàńĝũàĝē\",\"T/IST7\":\"Śōmēţĥĩńĝ ĩś ńēŵ: Ƥĺàţƒōŕm ŨĨ\",\"gSWyZa\":\"Ŵē àŕē ƀũĩĺďĩńĝ à ńēŵ ŨĨ ŵĩţĥ à mōďēŕń śţàćķ. Ŵĥàţ ŷōũ ćũŕŕēńţĺŷ śēē ĩś ńōţ ƒĩxēď àńď ŵĩĺĺ ƀē ŕēďēśĩĝńēď ƀũţ ďēmōńśţŕàţēś ţĥē ŨĨ/ŨX ƥōśśĩƀĩĺĩţĩēś ŵē ŵĩĺĺ ĥàvē ĝōĩńĝ ƒōŕŵàŕď.\",\"GNA6/Q\":\"Ƥŕōvĩďē Ƒēēďƀàćķ\",\"7hktsm\":\"Ĝēţţĩńĝ śţàŕţēď\",\"jFggGL\":\"Ƒàĩĺēď ţō ũƥĺōàď ĩmàĝē\",\"BtQ2Mv\":\"Ńōţēś śàvēď\",\"vBI46M\":\"Ƒàĩĺēď ţō śàvē ńōţēś\",\"rdU729\":\"Ĺàŷōũţ\",\"Nw+C4g\":\"Ŕēśēţ Ĺàŷōũţ\",\"fOql7D\":\"Śţōƥ Ēďĩţ\",\"NZubw3\":\"Ēďĩţ Ĺàŷōũţ\",\"aAIQg2\":\"Àƥƥēàŕàńćē\",\"cG3uIP\":\"Śĥōŵ ßōxēś\",\"w9VTXG\":\"Ćźēćĥ\",\"Fo2vDn\":\"Ďàńĩśĥ\",\"DDcvSo\":\"Ĝēŕmàń\",\"CZXzs4\":\"Ĝŕēēķ\",\"lYGfRP\":\"Ēńĝĺĩśĥ\",\"65A04M\":\"Śƥàńĩśĥ\",\"xB5BGV\":\"Śƥàńĩśĥ (Mēxĩćàń)\",\"A64kM8\":\"Ƒàŕśĩ / Ƥēŕśĩàń\",\"USZ2N6\":\"Ƒĩńńĩśĥ\",\"nLC6tu\":\"Ƒŕēńćĥ\",\"3oTCgM\":\"Ĥēƀŕēŵ\",\"tGjibo\":\"Ĥĩńďĩ\",\"mkWad2\":\"Ĥũńĝàŕĩàń\",\"Lj7sBL\":\"Ĩţàĺĩàń\",\"dFtidv\":\"ĵàƥàńēśē\",\"h6S9Yz\":\"Ķōŕēàń\",\"KIjvtr\":\"Ďũţćĥ\",\"1IipHp\":\"Ńōŕŵēĝĩàń\",\"trnWaw\":\"Ƥōĺĩśĥ\",\"MOERNx\":\"Ƥōŕţũĝũēśē\",\"KCh9+J\":\"Ƥōŕţũĝũēśē (ßŕàźĩĺĩàń)\",\"nji0/X\":\"Ŕũśśĩàń\",\"LSdcWW\":\"Śĺōvēńĩàń\",\"UaISq3\":\"Śŵēďĩśĥ\",\"SUr44j\":\"Ţĥàĩ\",\"Kz91g/\":\"Ţũŕķĩśĥ\",\"fROFIL\":\"Vĩēţńàmēśē\",\"6imsQS\":\"Ćĥĩńēśē (Śĩmƥĺĩƒĩēď)\",\"DM4gBB\":\"Ćĥĩńēśē (Ţŕàďĩţĩōńàĺ)\",\"5QTyaY\":\"Śũƀśćŕĩƀēď Ƥàŕţś\",\"GuGbPw\":\"Śũƀśćŕĩƀēď Ćàţēĝōŕĩēś\",\"LcKNFQ\":\"Ĺàţēśţ Ƥàŕţś\",\"eHUZsJ\":\"ßŌM Ŵàĩţĩńĝ Vàĺĩďàţĩōń\",\"ZopSbj\":\"Ŕēćēńţĺŷ Ũƥďàţēď\",\"Onj2Pw\":\"Ďēƥĺēţēď Śţōćķ\",\"Iq/utX\":\"Ŕēǫũĩŕēď ƒōŕ ßũĩĺď Ōŕďēŕś\",\"ZOsmSm\":\"Ēxƥĩŕēď Śţōćķ\",\"kc9cAF\":\"Śţàĺē Śţōćķ\",\"zLhIiS\":\"ßũĩĺď Ōŕďēŕś Ĩń Ƥŕōĝŕēśś\",\"UBWkDy\":\"Ōvēŕďũē ßũĩĺď Ōŕďēŕś\",\"WsHr9R\":\"Ōũţśţàńďĩńĝ Ƥũŕćĥàśē Ōŕďēŕś\",\"fCNzWA\":\"Ōvēŕďũē Ƥũŕćĥàśē Ōŕďēŕś\",\"gyZThB\":\"Ōũţśţàńďĩńĝ Śàĺēś Ōŕďēŕś\",\"Gu8K8T\":\"Ōvēŕďũē Śàĺēś Ōŕďēŕś\",\"XzTq3p\":\"Ćũŕŕēńţ Ńēŵś\",\"tMMrz4\":\"ĨńvēńŢŕēē Ďēmō\",\"vu8/DU\":\"Ĺōćàĺ Śēŕvēŕ\",\"RkXlPZ\":\"ĜĩţĤũƀ\",\"kc+zZA\":\"Ďēmō\",\"i0qMbr\":\"Ĥōmē\",\"7p5kLi\":\"Ďàśĥƀōàŕď\",\"UOTpFa\":\"Ƥũŕćĥàśĩńĝ\",\"mUv9U4\":\"Śàĺēś\",\"0LrFTO\":\"Ƥĺàŷĝŕōũńď\",\"4GLxhy\":\"Ĝēţţĩńĝ Śţàŕţēď\",\"VAYCzI\":\"Ĝēţţĩńĝ śţàŕţēď ŵĩţĥ ĨńvēńŢŕēē\",\"OZtEcz\":\"ÀƤĨ\",\"aW0h/b\":\"ĨńvēńŢŕēē ÀƤĨ ďōćũmēńţàţĩōń\",\"BOAupq\":\"Ďēvēĺōƥēŕ Màńũàĺ\",\"kUcL4g\":\"ĨńvēńŢŕēē ďēvēĺōƥēŕ màńũàĺ\",\"/lDBHm\":\"ƑÀǪ\",\"a3pVqb\":\"Ƒŕēǫũēńţĺŷ àśķēď ǫũēśţĩōńś\",\"kyAi7k\":\"Ĩńśţàńćē\",\"Q5S3DY\":\"Àƀōũţ ţĥĩś Ĩńvēńţŕēē ĩńśţàńćē\",\"vHeNia\":\"ĨńvēńŢŕēē\",\"gfhzPz\":\"Àƀōũţ ţĥē ĨńvēńŢŕēē ōŕĝ\",\"snyG+w\":\"Ĺĩćēńśēś\",\"tBjIo1\":\"Ĺĩćēńśēś ƒōŕ ƥàćķàĝēś ũśēď ƀŷ ĨńvēńŢŕēē\",\"2AZart\":\"Ōƥēń śōũŕćēà\",\"v+Wp++\":\"Ōƥēń śōũŕćē\",\"fu2+tK\":\"Śţàŕţ ƥàĝē ōƒ ŷōũŕ ĩńśţàńćē.\",\"pTE4nz\":\"Ţĥĩś Ƥōķémōń’ś ćŕŷ ĩś vēŕŷ ĺōũď àńď ďĩśţŕàćţĩńĝ\",\"S+oekQ\":\"Ţĥĩś Ƥōķémōń’ś ćŕŷ ĩś vēŕŷ ĺōũď àńď ďĩśţŕàćţĩńĝ àńď mōŕē àńď mōŕē àńď mōŕē\",\"kNyJAF\":\"Ƥŕōƒĩĺē ƥàĝē\",\"CFYxhi\":\"Ũśēŕ àţţŕĩƀũţēś àńď ďēśĩĝń śēţţĩńĝś.\",\"uP4V6I\":\"Ƒŕēē ƒōŕ ēvēŕŷōńē\",\"dyMOjI\":\"Ţĥē ƒĺũĩď ōƒ Śmēàŕĝĺē’ś ţàĩĺ śēćŕēţĩōńś ćĥàńĝēś\",\"PrR19h\":\"Vĩēŵ ƒōŕ ĩńţēŕàćţĩvē śćàńńĩńĝ àńď mũĺţĩƥĺē àćţĩōńś.\",\"d1WpzX\":\"Ţĥē ƒĺũĩď ōƒ Śmēàŕĝĺē’ś ţàĩĺ śēćŕēţĩōńś ćĥàńĝēś ĩń ţĥē ĩńţēńśĩţŷ\",\"1ekmeV\":\"àƀć\",\"Wj+wQW\":\"Ŕàńďōm ĩmàĝē\",\"sGi2sH\":\"Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ďũĩś àũţēm vēĺ ēũm ĩŕĩũŕē ďōĺōŕ ĩń ĥēńďŕēŕĩţ ĩń vũĺƥũţàţē vēĺĩţ ēśśē mōĺēśţĩē ćōńśēǫũàţ, vēĺ ĩĺĺũm ďōĺōŕē ēũ ƒēũĝĩàţ ńũĺĺà ƒàćĩĺĩśĩś àţ vēŕō ēŕōś ēţ àććũmśàń ēţ ĩũśţō ōďĩō ďĩĝńĩśśĩm ǫũĩ ƀĺàńďĩţ ƥŕàēśēńţ ĺũƥţàţũm źźŕĩĺ ďēĺēńĩţ àũĝũē ďũĩś ďōĺōŕē ţĥē ƒēũĝàĩţ ńũĺĺà ƒàćĩĺĩśĩ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēćţēţũēŕ àďĩƥĩśćĩńĝ ēĺĩţ, śēď ďĩàm ńōńũmmŷ ńĩƀĥ ēũĩśmōď ţĩńćĩďũńţ ũţ ĺàōŕēēţ ďōĺōŕē màĝńà àĺĩǫũàm ēŕàţ vōĺũţƥàţ. Ũţ ŵĩśĩ ēńĩm àď mĩńĩm vēńĩàm, ǫũĩś ńōśţŕũď ēxēŕćĩ ţàţĩōń ũĺĺàmćōŕƥēŕ śũśćĩƥĩţ ĺōƀōŕţĩś ńĩśĺ ũţ àĺĩǫũĩƥ ēx ēà ćōmmōďō ćōńśēǫũàţ. Ďũĩś àũţēm vēĺ ēũm ĩŕĩũŕē ďōĺōŕ ĩń ĥēńďŕēŕĩţ ĩń vũĺƥũţàţē vēĺĩţ ēśśē mōĺēśţĩē ćōńśēǫũàţ, vēĺ ĩĺĺũm ďōĺōŕē ēũ ƒēũĝĩàţ ńũĺĺà ƒàćĩĺĩśĩś àţ vēŕō ēŕōś ēţ àććũmśàń ēţ ĩũśţō ōďĩō ďĩĝńĩśśĩm ǫũĩ ƀĺàńďĩţ ƥŕàēśēńţ ĺũƥţàţũm źźŕĩĺ ďēĺēńĩţ àũĝũē ďũĩś ďōĺōŕē ţĥē ƒēũĝàĩţ ńũĺĺà ƒàćĩĺĩśĩ. Ńàmē ĺĩƀēŕ ţēmƥōŕ ćũm śōĺũţà ńōƀĩś ēĺēĩƒēńď ōƥţĩōń ćōńĝũē ńĩĥĩĺ ĩmƥēŕďĩēţ ďōmĩńĝ ĩď ǫũōď màźĩm ƥĺàćēŕàţ ƒàćēŕ ƥōśśĩm àśśũmē. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēćţēţũēŕ àďĩƥĩśćĩńĝ ēĺĩţ, śēď ďĩàm ńōńũmmŷ ńĩƀĥ ēũĩśmōď ţĩńćĩďũńţ ũţ ĺàōŕēēţ ďōĺōŕē màĝńà àĺĩǫũàm ēŕàţ vōĺũţƥàţ. Ũţ ŵĩśĩ ēńĩm àď mĩńĩm vēńĩàm, ǫũĩś ńōśţŕũď ēxēŕćĩ ţàţĩōń ũĺĺàmćōŕƥēŕ śũśćĩƥĩţ ĺōƀōŕţĩś ńĩśĺ ũţ àĺĩǫũĩƥ ēx ēà ćōmmōďō ćōńśēǫũàţ. Ďũĩś àũţēm vēĺ ēũm ĩŕĩũŕē ďōĺōŕ ĩń ĥēńďŕēŕĩţ ĩń vũĺƥũţàţē vēĺĩţ ēśśē mōĺēśţĩē ćōńśēǫũàţ, vēĺ ĩĺĺũm ďōĺōŕē ēũ ƒēũĝĩàţ ńũĺĺà ƒàćĩĺĩśĩś. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, Àţ àććũśàm àĺĩǫũŷàm ďĩàm ďĩàm ďōĺōŕē ďōĺōŕēś ďũō ēĩŕmōď ēōś ēŕàţ, ēţ ńōńũmŷ śēď ţēmƥōŕ ēţ ēţ ĩńvĩďũńţ Ĵũśţō ĺàƀōŕē Śţēţ ćĺĩţà ēà ēţ ĝũƀēŕĝŕēń, ķàśď màĝńà ńō ŕēƀũm. śàńćţũś śēà śēď ţàķĩmàţà ũţ vēŕō vōĺũƥţũà. ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ. Ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ, ćōńśēţēţũŕ śàďĩƥśćĩńĝ ēĺĩţŕ, śēď ďĩàm ńōńũmŷ ēĩŕmōď ţēmƥōŕ ĩńvĩďũńţ ũţ ĺàƀōŕē ēţ ďōĺōŕē màĝńà àĺĩǫũŷàm ēŕàţ, śēď ďĩàm vōĺũƥţũà. Àţ vēŕō ēōś ēţ àććũśàm ēţ Ĵũśţō ďũō ďōĺōŕēś ēţ ēà ŕēƀũm. Śţēţ ćĺĩţà ķàśď ĝũƀēŕĝŕēń, ńō śēà ţàķĩmàţà śàńćţũś ēśţ Ĺōŕēm ĩƥśũm ďōĺōŕ śĩţ àmēţ. Ĺōŕēm ĩƥśũm ďōĺōŕ\",\"K+7Exx\":\"Ŷàńmà ĩś ćàƥàƀĺē ōƒ śēēĩńĝ 360 ďēĝŕēēś ŵĩţĥōũţ\",\"a3LDKx\":\"Śēćũŕĩţŷ\",\"D9kxcs\":\"Ţĥē śĥēĺĺ’ś ŕōũńďēď śĥàƥē àńď ţĥē ĝŕōōvēś ōń ĩţś.\",\"ZlwDi6\":\"Àńàĺŷţĩćś\",\"Ntb/Ja\":\"Ţĥĩś Ƥōķémōń ũśēś ĩţś ƒĺŷĩńĝ àƀĩĺĩţŷ ţō ǫũĩćķĺŷ ćĥàśē\",\"q+Lv8f\":\"Ćōmƀũśķēń ƀàţţĺēś ŵĩţĥ ţĥē ĩńţēńśēĺŷ ĥōţ ƒĺàmēś ĩţ śƥēŵś\",\"8/1bpV\":\"Ēŕŕōŕ ƒēţćĥĩńĝ ţōķēń ƒŕōm śēŕvēŕ.\",\"FKQcYZ\":\"Ĺōĝōũţ śũććēśśƒũĺĺ\",\"Py+E6e\":\"Ĺōĝōũţ śũććēśśƒũĺ\",\"aJhI/3\":\"Śēē ŷōũ śōōń.\",\"eX0txO\":\"Ćĥēćķ ŷōũŕ ĩńƀōx ƒōŕ à ŕēśēţ ĺĩńķ. Ţĥĩś ōńĺŷ ŵōŕķś ĩƒ ŷōũ ĥàvē àń àććōũńţ. Ćĥēćķ ĩń śƥàm ţōō.\",\"WhimMi\":\"Ŕēśēţ ƒàĩĺēď\",\"iVj6ge\":\"Àĺŕēàďŷ ĺōĝĝēď ĩń\",\"FR/+0K\":\"Ƒōũńď àń ēxĩśţĩńĝ ĺōĝĩń - ũśĩńĝ ĩţ ţō ĺōĝ ŷōũ ĩń.\",\"3X1ZLb\":\"Ƒōŕm Ēŕŕōŕ\",\"x5LTam\":\"Ƒōŕm mēţĥōď ńōţ ƥŕōvĩďēď\",\"Y/uvnA\":\"Ŕēśƥōńśē ďĩď ńōţ ćōńţàĩń àćţĩōń ďàţà\",\"Pya8ub\":\"Ĩńvàĺĩď Ƒōŕm\",\"D6wyts\":\"mēţĥōď ƥàŕàmēţēŕ ńōţ śũƥƥĺĩēď\",\"8uQpHD\":\"Àďď Ƒĩĺē\",\"V4WsyL\":\"Àďď Ĺĩńķ\",\"TzSMET\":\"Ƒĩĺē àďďēď\",\"GvlLvd\":\"Ĺĩńķ àďďēď\",\"xtmR+6\":\"Ēďĩţ Ƒĩĺē\",\"gDx5MG\":\"Ēďĩţ Ĺĩńķ\",\"TKcCLO\":\"Ƒĩĺē ũƥďàţēď\",\"AEUkAQ\":\"Ĺĩńķ ũƥďàţēď\",\"hZfPb3\":\"Ďēĺēţē Àţţàćĥmēńţ\",\"iDEbsu\":\"Àţţàćĥmēńţ ďēĺēţēď\",\"1oL0IJ\":\"Àŕē ŷōũ śũŕē ŷōũ ŵàńţ ţō ďēĺēţē ţĥĩś àţţàćĥmēńţ?\",\"HoG6cl\":\"Ēďĩţ Ćōmƥàńŷ\",\"E7xvdq\":\"Ćōmƥàńŷ ũƥďàţēď\",\"22eAtb\":\"Ćŕēàţē Ƥàŕţ\",\"LDesI6\":\"Ƥàŕţ ćŕēàţēď\",\"enG3o5\":\"Ēďĩţ Ƥàŕţ\",\"+g4LWF\":\"Ƥàŕţ ũƥďàţēď\",\"oATGL2\":\"Ƥàŕēńţ ƥàŕţ ćàţēĝōŕŷ\",\"qyS7x9\":\"Àďď ĝĩvēń ǫũàńţĩţŷ àś ƥàćķś ĩńśţēàď ōƒ ĩńďĩvĩďũàĺ ĩţēmś\",\"LWFE8j\":\"Ēńţēŕ ĩńĩţĩàĺ ǫũàńţĩţŷ ƒōŕ ţĥĩś śţōćķ ĩţēm\",\"VzQT2x\":\"Śēŕĩàĺ Ńũmƀēŕś\",\"0dR85g\":\"Ēńţēŕ śēŕĩàĺ ńũmƀēŕś ƒōŕ ńēŵ śţōćķ (ōŕ ĺēàvē ƀĺàńķ)\",\"4xXnZr\":\"Ćŕēàţē Śţōćķ Ĩţēm\",\"gQgYNs\":\"Ēďĩţ Śţōćķ Ĩţēm\",\"ipE2p4\":\"Ńōţ ĩmƥĺēmēńţēď\",\"WvSApV\":\"Ţĥĩś ƒēàţũŕē ĩś ńōţ ŷēţ ĩmƥĺēmēńţēď\",\"sJK6pq\":\"Ƥēŕmĩśśĩōń ďēńĩēď\",\"3WjGlZ\":\"Ŷōũ ďō ńōţ ĥàvē ƥēŕmĩśśĩōń ţō ƥēŕƒōŕm ţĥĩś àćţĩōń\",\"J7PX+R\":\"Ĩńvàĺĩď Ŕēţũŕń Ćōďē\",\"78bD8l\":[\"Śēŕvēŕ ŕēţũŕńēď śţàţũś \",[\"returnCode\"]],\"ps9k8Y\":\"Ćĥēćķĩńĝ ĩƒ ŷōũ àŕē àĺŕēàďŷ ĺōĝĝēď ĩń\",\"bX1aQ5\":\"Ńō śēĺēćţĩōń\",\"AA2j+t\":\"Ēďĩţ ĥōśţ ōƥţĩōńś\",\"F+gz9Z\":\"Śēńď màĩĺ\",\"eV2FZ+\":\"Ţōķēń ĩńvàĺĩď\",\"uAHzZQ\":\"Ŷōũ ńēēď ţō ƥŕōvĩďē à vàĺĩď ţōķēń ţō śēţ à ńēŵ ƥàśśŵōŕď. Ćĥēćķ ŷōũŕ ĩńƀōx ƒōŕ à ŕēśēţ ĺĩńķ.\",\"+5xxir\":\"Ńō ţōķēń ƥŕōvĩďēď\",\"KuLTFa\":\"Ŷōũ ńēēď ţō ƥŕōvĩďē à ţōķēń ţō śēţ à ńēŵ ƥàśśŵōŕď. Ćĥēćķ ŷōũŕ ĩńƀōx ƒōŕ à ŕēśēţ ĺĩńķ.\",\"Hw2MHB\":\"Ƥàśśŵōŕď śēţ\",\"+p8fKY\":\"Ţĥē ƥàśśŵōŕď ŵàś śēţ śũććēśśƒũĺĺŷ. Ŷōũ ćàń ńōŵ ĺōĝĩń ŵĩţĥ ŷōũŕ ńēŵ ƥàśśŵōŕď\",\"V/e7nf\":\"Śēţ ńēŵ ƥàśśŵōŕď\",\"TpqeIh\":[\"Ēŕŕōŕ: \",[\"0\"]],\"b3ilvM\":\"Śōŕŕŷ, àń ũńēxƥēćţēď ēŕŕōŕ ĥàś ōććũŕŕēď.\",\"edpMcF\":\"Àũţōũƥďàţē\",\"0s/I4H\":\"Ţĥĩś ƥàĝē ĩś à ŕēƥĺàćēmēńţ ƒōŕ ţĥē ōĺď śţàŕţ ƥàĝē ŵĩţĥ ţĥē śàmē ĩńƒōŕmàţĩōń. Ţĥĩś ƥàĝē ŵĩĺĺ ƀē ďēƥŕēćàţēď àńď ŕēƥĺàćēď ƀŷ ţĥē ĥōmē ƥàĝē.\",\"2DfxO0\":[\"Ŵēĺćōmē ţō ŷōũŕ Ďàśĥƀōàŕď\",[\"0\"]],\"ZLvUR5\":\"Ţĥĩś ƥàĝē ĩś à śĥōŵćàśē ƒōŕ ţĥē ƥōśśĩƀĩĺĩţĩēś ōƒ Ƥĺàţƒōŕm ŨĨ.\",\"eKHY3W\":\"Ƥĺũĝĩń Śēţţĩńĝś\",\"hFwWnI\":\"Ńōţĩƒĩćàţĩōń Śēţţĩńĝś\",\"50nnEk\":\"Ĝĺōƀàĺ Śēţţĩńĝś\",\"c6Mp+A\":\"Śēţţĩńĝś ƒōŕ ţĥē ćũŕŕēńţ ũśēŕ\",\"EBBDLp\":\"Ĥōmē Ƥàĝē Śēţţĩńĝś\",\"d42r7C\":\"Śēàŕćĥ Śēţţĩńĝś\",\"o0PqeM\":\"Ĺàƀēĺ Śēţţĩńĝś\",\"nutMuO\":\"Ŕēƥōŕţ Śēţţĩńĝś\",\"VzYWwh\":\"Śēţţĩńĝś ƒōŕ ţĥē ńōţĩƒĩćàţĩōńś\",\"0fzps+\":\"Ĝĺōƀàĺ Śēŕvēŕ Śēţţĩńĝś\",\"5u2+so\":\"Ĝĺōƀàĺ Śēţţĩńĝś ƒōŕ ţĥĩś ĩńśţàńćē\",\"S60KP9\":\"Śēŕvēŕ Śēţţĩńĝś\",\"R+R5Sa\":\"Ĺōĝĩń Śēţţĩńĝś\",\"NP6Hng\":\"ßàŕćōďē Śēţţĩńĝś\",\"H2tPtY\":\"Ƥàŕţ Śēţţĩńĝś\",\"axC9dx\":\"Ƥŕĩćĩńĝ Śēţţĩńĝś\",\"PN5rCS\":\"Śţōćķ Śēţţĩńĝś\",\"1PGWAQ\":\"ßũĩĺď Ōŕďēŕ Śēţţĩńĝś\",\"WObPen\":\"Ƥũŕćĥàśē Ōŕďēŕ Śēţţĩńĝś\",\"H7F6Gx\":\"Śàĺēś Ōŕďēŕ Śēţţĩńĝś\",\"Ud411M\":\"Ƥĺũĝĩń Śēţţĩńĝś ƒōŕ ţĥĩś ĩńśţàńćē\",\"pkdjGY\":\"Ďàţà ĩś ćũŕŕēńţ ƀēēĩńĝ ĺōàďēď\",\"gIQQwD\":\"Ƒàĩĺēď ţō ĺōàď\",\"UbtqIw\":\"Śĥōŵ ĩńţēŕńàĺ ńàmēś\",\"UIwUzc\":[\"Ĩńƥũţ \",[\"0\"],\" ĩś ńōţ ķńōŵń\"],\"J9kB0C\":[\"Śàvēď ćĥàńĝēś \",[\"0\"]],\"EOyF2I\":[\"Ćĥàńĝēď ţō \",[\"0\"]],\"pa6s4O\":[\"Ēŕŕōŕ ŵĥĩĺē śàvĩńĝ \",[\"0\"]],\"/JfytP\":[\"Ēŕŕōŕ ŵàś \",[\"err\"]],\"IBGfrY\":[\"Ƥĺũĝĩń: \",[\"0\"]],\"Se2ost\":[\"Mēţĥōď: \",[\"0\"]],\"nDqlBl\":\"Ũśēŕĩńƒō\",\"JOUEkZ\":[\"Ƒĩŕśţ ńàmē: \",[\"0\"]],\"GlGzeI\":[\"Ĺàśţ ńàmē: \",[\"0\"]],\"PkcDO7\":[\"Ũśēŕńàmē: \",[\"0\"]],\"PsXasD\":\"Ũśē ƥśēũďō ĺàńĝũàĝē\",\"M46ISI\":\"ƀàŕś\",\"Ai6veK\":\"ōvàĺ\",\"8zGXnJ\":\"ďōţś\",\"gDIqhx\":\"Ďēśĩĝń <0/>\",\"QFd2P1\":\"Ƥŕĩmàŕŷ ćōĺōŕ\",\"160vo+\":\"Ŵĥĩţē ćōĺōŕ\",\"u01284\":\"ßĺàćķ ćōĺōŕ\",\"bjp1xg\":\"ßōŕďēŕ Ŕàďĩũś\",\"EBeoY+\":\"Ĺōàďēŕ\",\"pS7MTY\":\"Màńũàĺ ĩńƥũţ\",\"29Om2/\":\"Ĩmàĝē ßàŕćōďē\",\"dQStih\":\"Śēĺēćţēď ēĺēmēńţś àŕē ńōţ ķńōŵń\",\"Oik3bo\":\"Mũĺţĩƥĺē ōƀĴēćţ ţŷƥēś śēĺēćţēď\",\"RlLl3G\":[\"Àćţĩōńś ƒōŕ \",[\"0\"]],\"wBMjJ2\":\"Ćōũńţ\",\"T2Wq4D\":\"Śćàń Ƥàĝē\",\"cXiEKg\":\"Ţĥĩś ƥàĝē ćàń ƀē ũśēď ƒōŕ ćōńţĩńũōũśĺŷ śćàńńĩńĝ ĩţēmś àńď ţàķĩńĝ àćţĩōńś ōń ţĥēm.\",\"qBZttg\":\"Śēĺēćţ ţĥē ĩńƥũţ mēţĥōď ŷōũ ŵàńţ ţō ũśē ţō śćàń ĩţēmś.\",\"XU5AOg\":\"Ĩńƥũţ\",\"kY/87m\":\"Śēĺēćţ ĩńƥũţ mēţĥōď\",\"ow3fug\":\"Ńōţĥĩńĝ ƒōũńď\",\"66J/c0\":\"Ďēƥēńďĩńĝ ōń ţĥē śēĺēćţēď ƥàŕţś àćţĩōńś ŵĩĺĺ ƀē śĥōŵń ĥēŕē. Ńōţ àĺĺ ƀàŕćōďē ţŷƥēś àŕē śũƥƥōŕţēď ćũŕŕēńţĺŷ.\",\"bwRvnp\":\"Àćţĩōń\",\"sQhVFe\":[[\"0\"],\" ĩţēmś śēĺēćţēď\"],\"U+sonC\":\"Ĝēńēŕàĺ Àćţĩōńś\",\"H8H7u6\":\"Ĺōōķũƥ ƥàŕţ\",\"sliuzR\":\"Ōƥēń Ĺĩńķ\",\"mM7dgZ\":\"Ĥĩśţōŕŷ ĩś ĺōćàĺĺŷ ķēƥţ ĩń ţĥĩś ƀŕōŵśēŕ.\",\"s9lCxX\":\"Ţĥē ĥĩśţōŕŷ ĩś ķēƥţ ĩń ţĥĩś ƀŕōŵśēŕ'ś ĺōćàĺ śţōŕàĝē. Śō ĩţ ŵōń'ţ ƀē śĥàŕēď ŵĩţĥ ōţĥēŕ ũśēŕś ōŕ ōţĥēŕ ďēvĩćēś ƀũţ ĩś ƥēŕśĩśţēńţ ţĥŕōũĝĥ ŕēĺōàďś. Ŷōũ ćàń śēĺēćţ ĩţēmś ĩń ţĥē ĥĩśţōŕŷ ţō ƥēŕƒōŕm àćţĩōńś ōń ţĥēm. Ţō àďď ĩţēmś, śćàń/ēńţēŕ ţĥēm ĩń ţĥē Ĩńƥũţ àŕēà.\",\"0caMy7\":\"Ĥĩśţōŕŷ\",\"nB43gC\":\"Ńō ĥĩśţōŕŷ\",\"HX5SVx\":\"Ĩţēm\",\"+zy2Nq\":\"Ţŷƥē\",\"wdxz7K\":\"Śōũŕćē\",\"PvB8gr\":\"Śćàńńēď àţ\",\"mPrJo6\":\"Ēńţēŕ ĩţēm śēŕĩàĺ ōŕ ďàţà\",\"gUm1Y0\":\"Àďď ďũmmŷ ĩţēm\",\"sGH11W\":\"Śēŕvēŕ\",\"z0t9bb\":\"Ĺōĝĩń\",\"HCTGDT\":\"ßàŕćōďēś\",\"AklCpf\":\"ƤŕōĴēćţ Ćōďēś\",\"+aCQna\":\"Ƥĥŷśĩćàĺ Ũńĩţś\",\"aHCEmh\":\"Ƥŕĩćĩńĝ\",\"h8DugX\":\"Ĺàƀēĺś\",\"ApEshE\":\"Ŕēƥōŕţĩńĝ\",\"TxrNvj\":\"Ƥàŕţ Ƥàŕàmēţēŕś\",\"d5IWFK\":\"Śţōćķţàķē\",\"RCVhIP\":\"ßũĩĺď Ōŕďēŕś\",\"AeXO77\":\"Àććōũńţ\",\"+4YDgS\":\"Ďĩśƥĺàŷ Ōƥţĩōńś\",\"ekfzWq\":\"Ũśēŕ Śēţţĩńĝś\",\"xyAcm2\":\"Ƒōũńď àń ēxśĩśţĩńĝ ĺōĝĩń - ũśĩńĝ ĩţ ţō ĺōĝ ŷōũ ĩń.\",\"pAtylB\":\"Ńōţ Ƒōũńď\",\"FeQ++0\":\"Śōŕŕŷ, ţĥĩś ƥàĝē ĩś ńōţ ķńōŵń ōŕ ŵàś mōvēď.\",\"wmCIch\":\"Ĝō ţō ţĥē śţàŕţ ƥàĝē\",\"5GPcf9\":\"Màŕķ àś ũńŕēàď\",\"mY+KgP\":\"ßàśē Ƥàŕţ\",\"kXDwva\":\"ßũĩĺď Śţàţũś\",\"98Q4bz\":\"ßũĩĺď Ďēţàĩĺś\",\"L1LMmH\":\"Àĺĺōćàţē Śţōćķ\",\"E9en8O\":\"Ĩńćōmƥĺēţē Ōũţƥũţś\",\"Mzv4va\":\"Ćōmƥĺēţēď Ōũţƥũţś\",\"US3GCq\":\"Ćōńśũmēď Śţōćķ\",\"CVlgqS\":\"Ćĥĩĺď ßũĩĺď Ōŕďēŕś\",\"w/Sphq\":\"Àţţàćĥmēńţś\",\"1DBGsz\":\"Ńōţēś\",\"heU0Hk\":\"ßàŕćōďē Àćţĩōńś\",\"jpctdh\":\"Vĩēŵ\",\"VSd7DB\":\"Vĩēŵ ƥàŕţ ƀàŕćōďē\",\"3Bbgw2\":\"Ĺĩńķ ßàŕćōďē\",\"ILmSgE\":\"Ĺĩńķ ćũśţōm ƀàŕćōďē ţō ƥàŕţ\",\"ut1J8k\":\"Ũńĺĩńķ ßàŕćōďē\",\"+UKDx2\":\"Ũńĺĩńķ ćũśţōm ƀàŕćōďē ƒŕōm ƥàŕţ\",\"Tyj32s\":\"Ŕēƥōŕţĩńĝ Àćţĩōńś\",\"gjpdaf\":\"Ŕēƥōŕţ\",\"V7w5fl\":\"Ƥŕĩńţ ƀũĩĺď ŕēƥōŕţ\",\"YxwWvi\":\"ßũĩĺď Ōŕďēŕ\",\"tDgG1Y\":\"ßũĩĺď Ōŕďēŕ Àćţĩōńś\",\"imB4Wr\":\"Ēďĩţ ƀũĩĺď ōŕďēŕ\",\"euc6Ns\":\"Ďũƥĺĩćàţē\",\"BmclYe\":\"Ďũƥĺĩćàţē ƀũĩĺď ōŕďēŕ\",\"ltuPrj\":\"Ďēĺēţē ƀũĩĺď ōŕďēŕ\",\"bwuG2V\":\"Ńēŵ ßũĩĺď Ōŕďēŕ\",\"URmyfc\":\"Ďēţàĩĺś\",\"glJbgw\":\"Màńũƒàćţũŕēď Ƥàŕţś\",\"i4b9ex\":\"Śũƥƥĺĩēď Ƥàŕţś\",\"TVGEcl\":\"Àśśĩĝńēď Śţōćķ\",\"z+ZEYC\":\"Ćōmƥàńŷ Àćţĩōńś\",\"EjxtPT\":\"Ēďĩţ ćōmƥàńŷ\",\"VBpmg6\":\"Ďēĺēţē ćōmƥàńŷ\",\"+m9/3S\":\"Màńũƒàćţũŕēŕ\",\"7lonqg\":\"Śũƀćàţēĝōŕĩēś\",\"F18WP3\":\"Ƥàŕàmēţēŕś\",\"SDRhYQ\":\"Vàŕĩàńţś\",\"/637F4\":\"ßĩĺĺ ōƒ Màţēŕĩàĺś\",\"5M5Kdm\":\"Ũśēď Ĩń\",\"9RecCt\":\"Śũƥƥĺĩēŕś\",\"DbZMYM\":\"Śćĥēďũĺĩńĝ\",\"eeXE8u\":\"Ţēśţ Ţēmƥĺàţēś\",\"AAoGm5\":\"Ŕēĺàţēď Ƥàŕţś\",\"bbA1t1\":\"Śţōćķ Àćţĩōńś\",\"n/p2QJ\":\"Ćōũńţ Śţōćķ\",\"4Qpffa\":\"Ćōũńţ ƥàŕţ śţōćķ\",\"9efe+k\":\"Ţŕàńśƒēŕ Śţōćķ\",\"tnr8CD\":\"Ţŕàńśƒēŕ ƥàŕţ śţōćķ\",\"loB51L\":\"Ƥàŕţ Àćţĩōńś\",\"zt/pSE\":\"Ēďĩţ ƥàŕţ\",\"FFYpjf\":\"Ďũƥĺĩćàţē ƥàŕţ\",\"metDDP\":\"Ďēĺēţē ƥàŕţ\",\"NUrY9o\":\"Ćàţēĝōŕĩēś\",\"Tol4BF\":\"Ōŕďēŕ Ďēţàĩĺś\",\"b447qM\":\"Ŕēćēĩvēď Śţōćķ\",\"E0ub4Q\":\"Màńũƒàćţũŕēŕś\",\"NihQNk\":\"Ćũśţōmēŕś\",\"qC/FEC\":\"Ƥēńďĩńĝ Śĥĩƥmēńţś\",\"polrQd\":\"Ćōmƥĺēţēď Śĥĩƥmēńţś\",\"L7/8CO\":\"Śũƀĺōćàţĩōńś\",\"IdrYoA\":\"Śţōćķ Ţŕàćķĩńĝ\",\"KwhnxF\":\"Àĺĺōćàţĩōńś\",\"xnskHi\":\"Ĩńśţàĺĺēď Ĩţēmś\",\"K4v96J\":\"Ćĥĩĺď Ĩţēmś\",\"OWg6Ht\":\"Mōƀĩĺē vĩēŵƥōŕţ ďēţēćţēď\",\"j1oKmM\":\"Ƥĺàţƒōŕm ŨĨ ĩś ōƥţĩmĩźēď ƒōŕ Ţàƀĺēţś àńď Ďēśķţōƥś, ŷōũ ćàń ũśē ţĥē ōƒƒĩćĩàĺ àƥƥ ƒōŕ à mōƀĩĺē ēxƥēŕĩēńćē.\",\"NtcqDr\":\"Ŕēàď ţĥē ďōćś\",\"jdbeGb\":\"ĺōĝĩń\",\"Phg8Hk\":\"ŕēĝĩśţēŕ\",\"JrBnCJ\":[\"Ŵēĺćōmē \",[\"actionname\"],\" ţō\"],\"hx1ePY\":\"Ƥĺàćēĥōĺďēŕ\",\"g87ZP7\":\"Ōŕ ćōńţĩńũē ŵĩţĥ ēmàĩĺ\",\"q8yluz\":\"Ŷōũŕ ńàmē\",\"B2Tpo0\":\"Ĩńvàĺĩď ēmàĩĺ\",\"vz42/T\":\"Ƥàśśŵōŕď śĥōũĺď ĩńćĺũďē àţ ĺēàśţ 6 ćĥàŕàćţēŕś\",\"3xHmj+\":\"Àĺŕēàďŷ ĥàvē àń àććōũńţ? Ĺōĝĩń\",\"L5ridO\":\"Ďōń'ţ ĥàvē àń àććōũńţ? Ŕēĝĩśţēŕ\",\"oFjpQm\":\"Àń ēŕŕōŕ ōććũŕēď:\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/pt-br/messages.ts b/src/frontend/src/locales/pt-br/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/pt-br/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/pt/messages.ts b/src/frontend/src/locales/pt/messages.ts deleted file mode 100644 index 8fa70a54a4..0000000000 --- a/src/frontend/src/locales/pt/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Criado\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Leia a documentação\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/ru/messages.ts b/src/frontend/src/locales/ru/messages.ts deleted file mode 100644 index d4b3592b2d..0000000000 --- a/src/frontend/src/locales/ru/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Заголовок\",\"zzDlyQ\":\"Успешно\",\"rl7FGt\":\"Форма содержит ошибки\",\"dEgA5A\":\"Отменить\",\"hQRttt\":\"Подтвердить\",\"4GKuCs\":\"Ошибка входа\",\"tnaYa/\":\"Проверьте введенные данные и повторите попытку.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Вы вошли\",\"rxWA39\":\"С возвращением!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Отправка почты прошла успешно\",\"R2JMfc\":\"Проверьте свой почтовый ящик на наличие ссылки для входа в систему. Если у вас есть учетная запись, вы получите ссылку для входа в систему. Проверьте также спам.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Ошибка ввода\",\"BL4vL0\":\"Добро пожаловать, войдите ниже\",\"7sNhEz\":\"Имя пользователя\",\"8ZsakT\":\"Пароль\",\"9TO8nT\":\"Ваш пароль\",\"RfwZxd\":\"Сбросить пароль\",\"O3oNi5\":\"Электронная почта\",\"Wr5sDQ\":\"Мы вышлем вам ссылку для входа - если вы зарегистрированы\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Отправьте мне электронное письмо\",\"XlWstl\":\"Я буду использовать имя пользователя и пароль\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Узел\",\"6YtxFj\":\"Название\",\"yWMzcH\":\"Здесь никого...\",\"UYWLpE\":\"Добавить узел\",\"tfDRzk\":\"Сохранить\",\"GG8+B2\":\"Выберите объект назначения\",\"uqEJlE\":\"Редактировать возможные параметры узла\",\"GUtCZC\":[\"Версия: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Название: \",[\"0\"]],\"ed0N/H\":[\"Состояние: <0>рабочий (\",[\"0\"],\"), <1>плагины\",[\"1\"]],\"SlfejT\":\"Ошибка\",\"A1taO8\":\"Поиск\",\"yQE2r9\":\"Загрузка\",\"AxPAXW\":\"Ничего не найдено\",\"sGeXL3\":\"Миниатюра\",\"IvkbIT\":\"Подробнее\",\"29VNqC\":\"Неизвестная ошибка\",\"nlJhkA\":\"Произошла ошибка:\",\"Qoq+GP\":\"Подробнее\",\"DVAy0b\":\"Логотип InvenTree\",\"3TnJRX\":\"Данная функция/кнопка/сайт является условным обозначением функции, которая не реализована, только частично или предназначена для тестирования.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"Эта панель является условной.\",\"XDwkfO\":\"Сканировать QR код\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Неизвестный ответ\",\"UHot+L\":\"Ошибка при получении камеры\",\"bR26mb\":\"Ошибка при сканировании\",\"fvJQqd\":\"Ошибка при остановке\",\"CMQ09J\":\"Сканирование\",\"Fg9r/3\":\"Не сканировать\",\"QuNKRX\":\"Выбрать камеру\",\"m3BKG+\":\"Начать сканирование\",\"yFRXH8\":\"Остановить сканирование\",\"3164SS\":\"Сканирования пока не было!\",\"RWw9Lg\":\"Закрыть модальное окно\",\"vERlcd\":\"Профиль\",\"Tz0i8g\":\"Настройки\",\"T3FM0r\":\"Настройки аккаунта\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Плагины\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Выход\",\"rmlxV1\":\"Открыть панель навигации\",\"N6Pxr9\":\"Показать все\",\"ZDIydz\":\"Начало работы\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Панель навигации\",\"wRR604\":\"Страницы\",\"TvY/XA\":\"Документация\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Уведомления\",\"t2pqHO\":\"У вас нет непрочитанных уведомлений.\",\"+s1J8k\":\"Пометить как прочитанное\",\"mO8KLE\":\"результаты\",\"Dwt0g3\":\"Введите слова для поиска\",\"9UYKcs\":\"Параметры поиска\",\"qkCZlJ\":\"Поиск по выражению\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"Произошла ошибка во время поиска запроса\",\"Ev2r9A\":\"Нет результатов\",\"dTtbrX\":\"Нет доступных результатов для поискового запроса\",\"5iarLn\":[\"Неизвестная модель: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Детали\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Детали поставщиков\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Детали производителей\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Категории деталей\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Складские позиции\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Места хранения\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Компании\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Заказы на закупку\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Заказы на продажу\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Заказы на возврат\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Выбрать столбцы\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Загрузить выбранные данные\",\"rn2/2V\":\"Убрать фильтрацию\",\"N73rrp\":\"Добавление фильтра таблицы\",\"ot7qsv\":\"Очистить все фильтры\",\"vCSBPD\":\"Добавить фильтр\",\"c+xCSz\":\"Истина\",\"ocUvR+\":\"Ложь\",\"jpXCTI\":\"Add Table Filter\",\"R39XGq\":\"Select from the available filters\",\"o7J4JM\":\"Отфильтровать\",\"hpMOSe\":\"Выбрать фильтр\",\"wMHvYH\":\"Значение\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Добавить фильтр\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Комментарий\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Изменить\",\"cnGeoo\":\"Удалить\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Загрузить вложения\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"T/IST7\":\"Something is new: Platform UI\",\"gSWyZa\":\"Мы создаем новый пользовательский интерфейс с современным стеком. То, что вы видите сейчас, не является фиксированным и будет переработано, но демонстрирует возможности UI/UX, которые мы будем иметь в будущем.\",\"GNA6/Q\":\"Provide Feedback\",\"7hktsm\":\"Getting started\",\"jFggGL\":\"Failed to upload image\",\"BtQ2Mv\":\"Notes saved\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Требуется для заказов на сборку\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Активные заказы на сборку\",\"UBWkDy\":\"Просроченные заказы на сборку\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Проверьте свой почтовый ящик, чтобы получить ссылку на сброс. Это работает только в том случае, если у вас есть учетная запись. Проверьте также спам.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Отправить письмо\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"Для установки нового пароля необходимо предоставить действующий токен. Проверьте свой почтовый ящик, чтобы получить ссылку на сброс пароля.\",\"+5xxir\":\"Не указан токен\",\"KuLTFa\":\"Для установки нового пароля необходимо предоставить токен. Проверьте свой почтовый ящик, чтобы получить ссылку на сброс пароля.\",\"Hw2MHB\":\"Пароль установлен\",\"+p8fKY\":\"Пароль был установлен успешно. Теперь вы можете войти в систему с новым паролем\",\"V/e7nf\":\"Установить новый пароль\",\"TpqeIh\":[\"Ошибка: \",[\"0\"]],\"b3ilvM\":\"Sorry, an unexpected error has occurred.\",\"edpMcF\":\"Автообновление\",\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"Имя: \",[\"0\"]],\"GlGzeI\":[\"Фамилия: \",[\"0\"]],\"PkcDO7\":[\"Имя пользователя: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Сканировать страницу\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" объектов выбраны\"],\"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.\",\"0caMy7\":\"История\",\"nB43gC\":\"Нет истории\",\"HX5SVx\":\"Элемент\",\"+zy2Nq\":\"Тип\",\"wdxz7K\":\"Источник\",\"PvB8gr\":\"Отсканирован в\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Заказы на сборку\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Подробности сборки\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/sl/messages.ts b/src/frontend/src/locales/sl/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/sl/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/sr/messages.d.ts b/src/frontend/src/locales/sr/messages.d.ts new file mode 100644 index 0000000000..1c1427cb3a --- /dev/null +++ b/src/frontend/src/locales/sr/messages.d.ts @@ -0,0 +1,4 @@ +import { Messages } from '@lingui/core'; + declare const messages: Messages; + export { messages }; + \ No newline at end of file diff --git a/src/frontend/src/locales/sv/messages.ts b/src/frontend/src/locales/sv/messages.ts deleted file mode 100644 index 31fec5a312..0000000000 --- a/src/frontend/src/locales/sv/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Titel\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Avbryt\",\"hQRttt\":\"Skicka\",\"4GKuCs\":\"Inloggningen misslyckades\",\"tnaYa/\":\"Kontrollera din inmatning och försök igen.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Inlogningen lyckad\",\"rxWA39\":\"Välkommen tillbaka!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"E-postleverans lyckad\",\"R2JMfc\":\"Kolla din inkorg för inloggningslänken. Om du har ett konto kommer du att få en inloggningslänk. Kolla in spam också.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Inmatningsfel\",\"BL4vL0\":\"Välkommen, logga in nedan\",\"7sNhEz\":\"Användarnamn\",\"8ZsakT\":\"Lösenord\",\"9TO8nT\":\"Ditt lösenord\",\"RfwZxd\":\"Återställ lösenord\",\"O3oNi5\":\"E-post\",\"Wr5sDQ\":\"Vi skickar en länk till dig för att logga in - om du är registrerad\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Skicka ett e-postmeddelande\",\"XlWstl\":\"Jag kommer att använda användarnamn och lösenord\",\"ADVQ46\":\"Logga in\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Värd\",\"6YtxFj\":\"Namn\",\"yWMzcH\":\"Ingen här...\",\"UYWLpE\":\"Lägg till värd\",\"tfDRzk\":\"Spara\",\"GG8+B2\":\"Välj destinationsinstans\",\"uqEJlE\":\"Redigera möjliga värdalternativ\",\"GUtCZC\":[\"Version \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Namn: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Fel\",\"A1taO8\":\"Sök\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"Inga resultat hittades\",\"sGeXL3\":\"Miniatyrbild\",\"IvkbIT\":\"Läs mer\",\"29VNqC\":\"Okänt fel\",\"nlJhkA\":\"Ett fel inträffade:\",\"Qoq+GP\":\"Läs mer\",\"DVAy0b\":\"InvenTree Logotyp\",\"3TnJRX\":\"Denna funktion/knapp/webbplats är en platshållare för en funktion som inte är implementerad, bara partiell eller avsedd för testning.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Skanna QR-kod\",\"l75CjT\":\"Ja\",\"1UzENP\":\"Nej\",\"GU7xAr\":\"Okänt svar\",\"UHot+L\":\"Fel vid öppning av kamera\",\"bR26mb\":\"Fel vid skanning\",\"fvJQqd\":\"Fel vid avbrott\",\"CMQ09J\":\"Scannar\",\"Fg9r/3\":\"Starta skanning\",\"QuNKRX\":\"Välj kamera\",\"m3BKG+\":\"Starta skanning\",\"yFRXH8\":\"Stoppa skanning\",\"3164SS\":\"Inga skanningar ännu!\",\"RWw9Lg\":\"Stäng fönstret\",\"vERlcd\":\"Profil\",\"Tz0i8g\":\"Inställningar\",\"T3FM0r\":\"Kontoinställningar\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logga ut\",\"rmlxV1\":\"Öppna navigering\",\"N6Pxr9\":\"Visa alla\",\"ZDIydz\":\"Kom igång\",\"BQDL+H\":\"Översikt över objekt, funktioner och möjliga användningsområden.\",\"UxKoFf\":\"Navigering\",\"wRR604\":\"Sidor\",\"TvY/XA\":\"Dokumentation\",\"uyJsf6\":\"Om\",\"iDNBZe\":\"Notifikationer\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"resultat\",\"Dwt0g3\":\"Ange sökord\",\"9UYKcs\":\"Sökalternativ\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Hela ordsökningen\",\"hJCuaV\":\"Ett fel inträffade under sökfrågan\",\"Ev2r9A\":\"Inga resultat\",\"dTtbrX\":\"Inga resultat tillgängliga för sökfrågan\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Artkel\",\"pmRbKZ\":\"Artiklar\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Leverantörsartikel\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Tillverkarens artiklar\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Artikelkategorier\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Artikel i lager\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Lagerplats\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Bygg\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Företag\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Inköpsorder\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Försäljningsorder\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Returorder\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"Användare\",\"Sxm8rQ\":\"Användare\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Välj Kolumner\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Ladda ner vald data\",\"rn2/2V\":\"Ta bort filter\",\"N73rrp\":\"Lägg till tabellfilter\",\"ot7qsv\":\"Rensa alla filter\",\"vCSBPD\":\"Lägg till filter\",\"c+xCSz\":\"Sant\",\"ocUvR+\":\"Falskt\",\"jpXCTI\":\"Lägg till tabellfilter\",\"R39XGq\":\"Välj från tillgängliga filter\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Välj filter\",\"wMHvYH\":\"Värde\",\"Fo55lj\":\"Välj filtervärde\",\"PzFzS+\":\"Lägg till filter\",\"EqGTpW\":\"Inga resultat hittades\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Felaktig begäran\",\"dA/8If\":\"Ej behörig\",\"7JBW66\":\"Otillåten\",\"KPx1UV\":\"Hittades inte\",\"v1qpjB\":\"Streckkods åtgärder\",\"inVgrM\":\"Skriv ut åtgärder\",\"8RYNR1\":\"Uppdatera data\",\"j2wMlR\":\"Tabellfilter\",\"7L01XJ\":\"Åtgärder\",\"N2C89m\":\"Referens\",\"Nu4oKW\":\"Beskrivning\",\"Sdfr6G\":\"Projektkod\",\"VbWX2u\":\"Antal\",\"qqWcBV\":\"Slutförd\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Prioritet\",\"d+F6q9\":\"Skapad\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Redigera\",\"cnGeoo\":\"Radera\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Hemsida\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Kategori\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Enheter\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IAN\",\"blbbPS\":\"Lagersaldo\",\"YA4hwj\":\"Prisintervall\",\"yzF66j\":\"Länk\",\"F6pfE9\":\"Aktiv\",\"PHri/6\":\"Filtrera på aktiv artiklestatus\",\"WL36Yh\":\"Montering\",\"oQzKsK\":\"Filtrera efter monteringsattribut\",\"NgZniC\":\"Inkludera underkategorier\",\"5JhtGd\":\"Inkludera artiklar från underkategorier\",\"dK3Z9j\":\"Komponent\",\"oO7QIX\":\"Filtrera efter komponentattribut\",\"y6MnU0\":\"Spårbart objekt\",\"MbixSq\":\"Filtrera på spårbart attribut\",\"YyRdJQ\":\"Har enheter\",\"WyFVby\":\"Filtrera efter artiklar som har enheter\",\"c9/Fqb\":\"Har IAN\",\"jh/Aa+\":\"Filtrera efter artiklar som har ett internt artikelnummer\",\"JqmfuT\":\"I lager\",\"6Kd+HK\":\"Filtrera efter artiklar som har enheter\",\"UgdO7s\":\"Få i lager\",\"GDYPCw\":\"Filtrera på ariklar som har lågt saldo\",\"TW9g28\":\"Kan köpas\",\"KMdl2R\":\"Filtrera på artiklar som kan köpas\",\"/3xNJ4\":\"Försäljningsbar\",\"V5i7hf\":\"Filtrera på artiklar som kan säljas\",\"ksX7Wx\":\"Virtuell\",\"QDTpY6\":\"Filtrera efter artiklar som är virtuella\",\"+SkaI8\":\"Inte virtuell\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Plats\",\"VikQny\":\"Testa filter\",\"ay6lVf\":\"Detta är ett testfilter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Visningsinställningar\",\"FpsvqB\":\"Färgläge\",\"vXIe7J\":\"Språk\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Prenumererade artiklar\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Senaste artiklarna\",\"eHUZsJ\":\"BOM Väntar på validering\",\"ZopSbj\":\"Senast uppdaterade\",\"Onj2Pw\":\"Slut i lager\",\"Iq/utX\":\"Krävs för byggorder\",\"ZOsmSm\":\"Förfallet lager\",\"kc9cAF\":\"Trögatlager ariklar\",\"zLhIiS\":\"Pågående byggorder\",\"UBWkDy\":\"Försenade byggorder\",\"WsHr9R\":\"Utestående inköpsorder\",\"fCNzWA\":\"Förfallna inköpsorder\",\"gyZThB\":\"Utestående försäljningsorder\",\"Gu8K8T\":\"Försenade försäljningsorder\",\"XzTq3p\":\"Aktuella nyheter\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Hem\",\"7p5kLi\":\"Kontrollpanel\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Kom igång\",\"VAYCzI\":\"Komma igång med InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API dokumentation\",\"BOAupq\":\"Utvecklarmanual\",\"kUcL4g\":\"InvenTree utvecklarmanual\",\"/lDBHm\":\"Frågor och svar\",\"a3pVqb\":\"Vanliga frågor (FAQ)\",\"kyAi7k\":\"Instans\",\"Q5S3DY\":\"Om denna Inventree instans\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"Om InvenTree org\",\"snyG+w\":\"Licenser\",\"tBjIo1\":\"Licenser för paket som används av InvenTree\",\"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\":\"Profilsida\",\"CFYxhi\":\"Användarattribut och designinställningar.\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Utloggningen lyckad\",\"aJhI/3\":\"Vi ses snart!\",\"eX0txO\":\"Kolla din inkorg för en återställningslänk. Detta fungerar bara om du har ett konto. Kontrollera även i skräppost.\",\"WhimMi\":\"Återställningen misslyckades\",\"iVj6ge\":\"Redan inloggad\",\"FR/+0K\":\"Hittade en befintlig inloggning - använder den för att logga in dig.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"8uQpHD\":\"Add File\",\"V4WsyL\":\"Add Link\",\"TzSMET\":\"File added\",\"GvlLvd\":\"Link added\",\"xtmR+6\":\"Redigera fil\",\"gDx5MG\":\"Redigera länk\",\"TKcCLO\":\"File updated\",\"AEUkAQ\":\"Link updated\",\"hZfPb3\":\"Radera bilaga\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serienummer\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Inte implementerad\",\"WvSApV\":\"Denna funktionen har inte implementerats\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Kontrollerar om du redan är inloggad\",\"bX1aQ5\":\"Inget val\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Skicka e-post\",\"eV2FZ+\":\"Ogiltig token\",\"uAHzZQ\":\"Du måste ange en giltig token för att ange ett nytt lösenord. Kontrollera din inkorg för en återställningslänk.\",\"+5xxir\":\"Ingen token angiven\",\"KuLTFa\":\"Du måste ange en giltig token för att ange ett nytt lösenord. Kontrollera din inkorg för en återställningslänk.\",\"Hw2MHB\":\"Lösenord sparat!\",\"+p8fKY\":\"Ditt lösenord har sparats. Du kan nu logga in med ditt nya lösenord.\",\"V/e7nf\":\"Ange nytt lösenord\",\"TpqeIh\":[\"Fel: \",[\"0\"]],\"b3ilvM\":\"Tyvärr, ett oväntat fel har inträffat.\",\"edpMcF\":\"Autouppdatera\",\"0s/I4H\":\"Denna sida är en ersättning för den gamla startsidan med samma information. Denna sida kommer att försvinna och ersättas av startsidan.\",\"2DfxO0\":[\"Welcome to your Dashboard\",[\"0\"]],\"ZLvUR5\":\"This page is a showcase for the possibilities of Platform UI.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"Användarinfo\",\"JOUEkZ\":[\"Förnamn: \",[\"0\"]],\"GlGzeI\":[\"Efternamn: \",[\"0\"]],\"PkcDO7\":[\"Användarnamn: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"punkt\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primärfärg\",\"160vo+\":\"Vitfärg\",\"u01284\":\"Svart färg\",\"bjp1xg\":\"Gränsradie\",\"EBeoY+\":\"Lastare\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Byggordrar\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Hittades inte\",\"FeQ++0\":\"Tyvärr, denna sida hittades inte eller flyttad.\",\"wmCIch\":\"Gå till startsidan\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parametrar\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobil vy upptäckt\",\"j1oKmM\":\"Plattform UI är optimerad för surfplattor och stationära datorer, kan du använda den officiella appen för en mobil upplevelse.\",\"NtcqDr\":\"Läs dokumenten\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/th/messages.ts b/src/frontend/src/locales/th/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/th/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/tr/messages.ts b/src/frontend/src/locales/tr/messages.ts deleted file mode 100644 index f2b51fe6f1..0000000000 --- a/src/frontend/src/locales/tr/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Başlık\",\"zzDlyQ\":\"Başarılı\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Vazgeç\",\"hQRttt\":\"Gönder\",\"4GKuCs\":\"Giriş başarısız\",\"tnaYa/\":\"Lütfen bilgilerinizi kontrol edin ve yeniden giriş yapın.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Oturum açıldı\",\"rxWA39\":\"Tekrar Hoş Geldiniz!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"E-posta teslimi başarılı\",\"R2JMfc\":\"Gelen kutunuzu kontrol edin. Eğer hesabınız varsa giriş yapabilmeniz için bir link alacaksınız. Spam klasörünüzü de kontrol edin.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Hatalı giriş\",\"BL4vL0\":\"Hoşgeldiniz, aşağıdan giriş yapın\",\"7sNhEz\":\"Kullanıcı Adı\",\"8ZsakT\":\"Parola\",\"9TO8nT\":\"Parolanız\",\"RfwZxd\":\"Parolayı sıfırla\",\"O3oNi5\":\"E-posta\",\"Wr5sDQ\":\"Size giriş yapabilmeniz için bir link göndereceğiz - eğer kayıtlıysanız\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Bize bir eposta gönderin\",\"XlWstl\":\"Kullanıcı adı ve şifre kullanacağım\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Sunucu\",\"6YtxFj\":\"Adı\",\"yWMzcH\":\"Burada kimse yok...\",\"UYWLpE\":\"Sunucu Ekle\",\"tfDRzk\":\"Kaydet\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Sunucu seçeneklerini düzenle\",\"GUtCZC\":[\"Sürüm: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"İsim: \",[\"0\"]],\"ed0N/H\":[\"Durum: <0>worker (\",[\"0\"],\"), <1>eklenti\",[\"1\"]],\"SlfejT\":\"Hata\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Yükleniyor\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Küçük resim\",\"IvkbIT\":\"Devamını Oku\",\"29VNqC\":\"Bilinmeyen hata\",\"nlJhkA\":\"Bir hata oluştu:\",\"Qoq+GP\":\"Devamını oku\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"Bu özellik/buton/alan henüz tamamlanmamış ya da test aşamasında olan bir özellik için buraya konulmuş.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"QR kodunu tara\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Bilinmeyen yanıt\",\"UHot+L\":\"Kamera açılırken hata oluştu\",\"bR26mb\":\"Tarama sırasında hata\",\"fvJQqd\":\"Durdurma sırasında hata\",\"CMQ09J\":\"Taranıyor\",\"Fg9r/3\":\"Taranmıyor\",\"QuNKRX\":\"Kamera Seç\",\"m3BKG+\":\"Taramayı başlat\",\"yFRXH8\":\"Taramayı durdur\",\"3164SS\":\"Henüz bir tarama yok!\",\"RWw9Lg\":\"Pencereyi kapat\",\"vERlcd\":\"Profil\",\"Tz0i8g\":\"Ayarlar\",\"T3FM0r\":\"Hesap ayarları\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Eklentiler\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Çıkış\",\"rmlxV1\":\"Gezinmeyi Aç\",\"N6Pxr9\":\"Tümünü gör\",\"ZDIydz\":\"Başlayın\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Gezinme\",\"wRR604\":\"Sayfalar\",\"TvY/XA\":\"Dokümantasyon\",\"uyJsf6\":\"Hakkında\",\"iDNBZe\":\"Bildirimler\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"sonuçlar\",\"Dwt0g3\":\"Arama metnini gir\",\"9UYKcs\":\"Arama Seçenekleri\",\"qkCZlJ\":\"Regex arama\",\"roauu/\":\"Tam kelime arama\",\"hJCuaV\":\"Arama sorgusu sırasında bir hata oluştu\",\"Ev2r9A\":\"Sonuç yok\",\"dTtbrX\":\"Arama sorgusu için sonuç yok\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Parça\",\"pmRbKZ\":\"Parçalar\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Tedarikçi Parçaları\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Üretici Parçaları\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Parça Kategorileri\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stok Kalemleri\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stok Konumları\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Şirketler\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Satın Alma Emirleri\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Satış Emirleri\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"İade Emirleri\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"Kullanıcı\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Sütunları Seç\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Seçili veriyi indir\",\"rn2/2V\":\"Filtreyi kaldır\",\"N73rrp\":\"Tablo filtresi ekle\",\"ot7qsv\":\"Tüm filtreleri temizle\",\"vCSBPD\":\"Filtre ekle\",\"c+xCSz\":\"Evet\",\"ocUvR+\":\"Hayır\",\"jpXCTI\":\"Tablo Filtresi Ekle\",\"R39XGq\":\"Mevcut filtrelerden seç\",\"o7J4JM\":\"Filtre\",\"hpMOSe\":\"Filtre seç\",\"wMHvYH\":\"Değer\",\"Fo55lj\":\"Filtre değeri seç\",\"PzFzS+\":\"Filtre Ekle\",\"EqGTpW\":\"Hiç kayıt bulunamadı\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Hatalı istek\",\"dA/8If\":\"Yetkisiz\",\"7JBW66\":\"Yasaklı\",\"KPx1UV\":\"Bulunamadı\",\"v1qpjB\":\"Barkod işlemleri\",\"inVgrM\":\"Yazdırma işlemleri\",\"8RYNR1\":\"Veriyi yenile\",\"j2wMlR\":\"Tablo filtreleri\",\"7L01XJ\":\"Eylemler\",\"N2C89m\":\"Referans\",\"Nu4oKW\":\"Açıklama\",\"Sdfr6G\":\"Proje Kodu\",\"VbWX2u\":\"Miktar\",\"qqWcBV\":\"Tamamlandı\",\"uAQUqI\":\"Durum\",\"1hKEom\":\"Öncelik\",\"d+F6q9\":\"Oluşturuldu\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Web Sitesi\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Kategori\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Birim\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"DPN\",\"blbbPS\":\"Stok\",\"YA4hwj\":\"Fiyat Aralığı\",\"yzF66j\":\"Bağlantı\",\"F6pfE9\":\"Aktif\",\"PHri/6\":\"Parçanın aktiflik durumuna göre filtrele\",\"WL36Yh\":\"Montaj\",\"oQzKsK\":\"Montaj niteliğine göre filtrele\",\"NgZniC\":\"Alt Kategorileri Dahil Et\",\"5JhtGd\":\"Alt kategorilerdeki parçaları dahil et\",\"dK3Z9j\":\"Bileşen\",\"oO7QIX\":\"Bileşen niteliğine göre filtrele\",\"y6MnU0\":\"Takip Edilebilir\",\"MbixSq\":\"Takip edilebilirliğine göre filtrele\",\"YyRdJQ\":\"Birimi Var\",\"WyFVby\":\"Birimi olan parçaları filtrele\",\"c9/Fqb\":\"DPN Var\",\"jh/Aa+\":\"Dahili parça numarası bulunan parçaları filtrele\",\"JqmfuT\":\"Stoğu Var\",\"6Kd+HK\":\"Stoğu olan parçaları filtrele\",\"UgdO7s\":\"Düşük Stok\",\"GDYPCw\":\"Düşük stoğu olan parçaları filtrele\",\"TW9g28\":\"Satın Alınabilir\",\"KMdl2R\":\"Satın alınabilir parçaları filtrele\",\"/3xNJ4\":\"Satılabilir\",\"V5i7hf\":\"Satılabilir parçaları filtrele\",\"ksX7Wx\":\"Sanal\",\"QDTpY6\":\"Sanal parçaları filtrele\",\"+SkaI8\":\"Sanal Değil\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Toplu\",\"wJijgU\":\"Konum\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Görüntü Ayarları\",\"FpsvqB\":\"Renk Modu\",\"vXIe7J\":\"Dil\",\"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\":\"Geri Bildirim Gönder\",\"7hktsm\":\"Başlarken\",\"jFggGL\":\"Failed to upload image\",\"BtQ2Mv\":\"Notes saved\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Yerleşim\",\"Nw+C4g\":\"Yerleşimi Sıfırla\",\"fOql7D\":\"Düzenlemeyi Durdur\",\"NZubw3\":\"Yerleşimi Düzenle\",\"aAIQg2\":\"Görünüm\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Son Parçalar\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Son Güncellenenler\",\"Onj2Pw\":\"Tükenmiş Stok\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Güncel Haberler\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Ana Sayfa\",\"7p5kLi\":\"Panel\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Başlarken\",\"VAYCzI\":\"InvenTree ile başlarken\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API dokümantasyonu\",\"BOAupq\":\"Geliştirici Kılavuzu\",\"kUcL4g\":\"InvenTree geliştirici kılavuzu\",\"/lDBHm\":\"SSS\",\"a3pVqb\":\"Sıkça sorulan sorular\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"InvenTree org hakkında\",\"snyG+w\":\"Lisanslar\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\":\"Profil sayfası\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Çıkış başarılı\",\"aJhI/3\":\"Yakında görüşmek üzere.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Zaten giriş yapılmış\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Zaten giriş yapıp yapmadığınız kontrol ediliyor\",\"bX1aQ5\":\"Seçim yok\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"E-posta gönder\",\"eV2FZ+\":\"Geçersiz token\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Şifre belirlendi\",\"+p8fKY\":\"Şifreniz başarıyla değiştirildi. Artık yeni şifrenizle giriş yapabilirsiniz\",\"V/e7nf\":\"Yeni şifre belirle\",\"TpqeIh\":[\"Hata: \",[\"0\"]],\"b3ilvM\":\"Üzgünüz, beklenmedik bir hata oluştu.\",\"edpMcF\":\"Otomatik güncelleme\",\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\":\"Kullanıcı bilgisi\",\"JOUEkZ\":[\"Ad: \",[\"0\"]],\"GlGzeI\":[\"Soyad: \",[\"0\"]],\"PkcDO7\":[\"Kullanıcı adı: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Tasarım <0/>\",\"QFd2P1\":\"Birincil renk\",\"160vo+\":\"Beyaz\",\"u01284\":\"Siyah\",\"bjp1xg\":\"Kenarlık Yarıçapı\",\"EBeoY+\":\"Yükleyici\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Yapım İşi Emirleri\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Bulunamadı\",\"FeQ++0\":\"Üzgünüz, böyle bir sayfa yok veya taşınmış.\",\"wmCIch\":\"Başlangıç ​​sayfasına git\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Belgeleri okuyun\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/vi/messages.ts b/src/frontend/src/locales/vi/messages.ts deleted file mode 100644 index 6300773d81..0000000000 --- a/src/frontend/src/locales/vi/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Tiêu đề\",\"zzDlyQ\":\"Thành công\",\"rl7FGt\":\"Từ các lỗi hiện hữu\",\"dEgA5A\":\"Hủy bỏ\",\"hQRttt\":\"Gửi\",\"4GKuCs\":\"Đăng nhập thất bại\",\"tnaYa/\":\"Kiểm tra đầu vào của bạn và thử lại.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Đăng nhập thành công\",\"rxWA39\":\"Chào mừng bạn đã trở lại!\",\"zM9Wd+\":\"Login successfull\",\"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.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Lỗi đầu vào\",\"BL4vL0\":\"Chào bạn, đăng nhập bên dưới\",\"7sNhEz\":\"Tên người dùng\",\"8ZsakT\":\"Mật khẩu\",\"9TO8nT\":\"Mật khẩu của bạn\",\"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ý\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Gửi email cho chúng tôi\",\"XlWstl\":\"Tôi sẽ sử dụng tên đăng nhập và mật khẩu\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Tên\",\"yWMzcH\":\"Không có ai ở đây...\",\"UYWLpE\":\"Thêm host\",\"tfDRzk\":\"Lưu lại\",\"GG8+B2\":\"Chọn thực thể đích\",\"uqEJlE\":\"Sửa tùy chọn máy chủ có thể\",\"GUtCZC\":[\"Phiên bản: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Tên: \",[\"0\"]],\"ed0N/H\":[\"Trạng thái: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Lỗi\",\"A1taO8\":\"Tìm kiếm\",\"yQE2r9\":\"Đang tải\",\"AxPAXW\":\"Không có kết quả nào được tìm thấy\",\"sGeXL3\":\"Ảnh thu nhỏ\",\"IvkbIT\":\"Xem thêm\",\"29VNqC\":\"Lỗi không xác định\",\"nlJhkA\":\"Lỗi đã xảy ra:\",\"Qoq+GP\":\"Đọc tiếp\",\"DVAy0b\":\"Logo InvenTree\",\"3TnJRX\":\"Tính năng/nút bấm/khu vực là dự kiến cho một tính năng chưa được triển khai, chỉ có một phần dùng để kiểm tra.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"Bảng điều khiển này là dự kiến.\",\"XDwkfO\":\"Quét mã QR\",\"l75CjT\":\"Đồng ý\",\"1UzENP\":\"Không\",\"GU7xAr\":\"Trả lời không xác định\",\"UHot+L\":\"Có lỗi khi lấy camera\",\"bR26mb\":\"Lỗi khi quét\",\"fvJQqd\":\"Lỗi trong khi dừng lại\",\"CMQ09J\":\"Đang quét\",\"Fg9r/3\":\"Chưa quét\",\"QuNKRX\":\"Chọn camera\",\"m3BKG+\":\"Bắt đầu quét\",\"yFRXH8\":\"Dừng quét\",\"3164SS\":\"Vẫn chưa quét!\",\"RWw9Lg\":\"Đóng cửa sổ\",\"vERlcd\":\"Hồ sơ\",\"Tz0i8g\":\"Cài đặt\",\"T3FM0r\":\"Cài đặt tài khoản\",\"zNkWa6\":\"Thiết lập hệ thống\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Đăng xuất\",\"rmlxV1\":\"Mở điều hướng\",\"N6Pxr9\":\"Xem tất cả\",\"ZDIydz\":\"Bắt đầu\",\"BQDL+H\":\"Tổng qua về đtối tượng mức cao, chức năng và tình huống sử dụng có thể.\",\"UxKoFf\":\"Điều hướng\",\"wRR604\":\"Trang\",\"TvY/XA\":\"Tài liệu\",\"uyJsf6\":\"Giới thiệu\",\"iDNBZe\":\"Thông báo\",\"t2pqHO\":\"Bạn chưa có thông báo mới.\",\"+s1J8k\":\"Đánh dấu đã đọc\",\"mO8KLE\":\"kết quả\",\"Dwt0g3\":\"Nhập văn bản tìm kiếm\",\"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\",\"Ev2r9A\":\"Không có kết quả\",\"dTtbrX\":\"Không có kết quả nào được tìm thấy với truy vấn tìm kiếm\",\"5iarLn\":[\"Model không rõ: \",[\"model\"]],\"vgP+9p\":\"Phụ kiện\",\"pmRbKZ\":\"Phụ tùng\",\"hAddRl\":\"Mẫu tham số phụ kiện\",\"UrnQgP\":\"Mẫu tham số phụ kiện\",\"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\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Xây dựng\",\"3400Lv\":\"Bản dựng\",\"7i8j3G\":\"Công ty\",\"s2QZS6\":\"Doanh nghiệp\",\"KxySMG\":\"Đơn đặt mua\",\"85Yvr2\":\"Đơn hàng mua\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"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\",\"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\",\"Sxm8rQ\":\"Người dùng\",\"4fws5M\":\"Lô hàng\",\"C3htzi\":\"Cài đặt đã được cập nhật\",\"FImCSc\":[[\"0\"],\" đã được cập nhật thành công\"],\"CsUgn+\":\"Lỗi sửa thiết lập\",\"mjN1LS\":\"Sửa thiết lập\",\"kCTFU8\":\"Chọn cột\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Tải về thông tin đã chọn\",\"rn2/2V\":\"Xoá bộ lọc\",\"N73rrp\":\"Thêm bộ lọc bảng\",\"ot7qsv\":\"Xóa tất cả bộ lọc\",\"vCSBPD\":\"Thêm bộ lọc\",\"c+xCSz\":\"Đúng\",\"ocUvR+\":\"Sai\",\"jpXCTI\":\"Thêm bộ lọc bảng\",\"R39XGq\":\"Chọn từ bộ lọc có sẵn\",\"o7J4JM\":\"Bộ lọc\",\"hpMOSe\":\"Chọn bộ lọc\",\"wMHvYH\":\"Giá trị\",\"Fo55lj\":\"Lựa chọn giá trị để lọc\",\"PzFzS+\":\"Thêm bộ lọc\",\"EqGTpW\":\"Không tìm thấy biểu ghi\",\"3o3AAs\":\"Server returned incorrect data type\",\"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\",\"v1qpjB\":\"Chức năng mã vạch\",\"inVgrM\":\"Chức năng in ấn\",\"8RYNR1\":\"Làm mới dữ liệu\",\"j2wMlR\":\"Bộ lọc bảng\",\"7L01XJ\":\"Chức năng\",\"N2C89m\":\"Tham chiếu\",\"Nu4oKW\":\"Mô tả\",\"Sdfr6G\":\"Mã dự án\",\"VbWX2u\":\"Số lượng\",\"qqWcBV\":\"Hoàn thành\",\"uAQUqI\":\"Trạng thái\",\"1hKEom\":\"Độ ưu tiên\",\"d+F6q9\":\"Được tạo\",\"ZmykKo\":\"Ngày mục tiêu\",\"kmUN8p\":\"Phát hành bởi\",\"XQACoK\":\"Chịu trách nhiệm\",\"UY1vmE\":\"Đính kèm\",\"NBdIgR\":\"Bình luận\",\"3wG7HI\":\"Đã tải lên\",\"ePK91l\":\"Sửa\",\"cnGeoo\":\"Xóa\",\"FJqE4H\":\"Tệp tin đã được tải lên\",\"3LxYDr\":[\"Tệp tin \",[\"0\"],\" đã được tải lên thành công\"],\"ae3dey\":\"Lỗi tải lên\",\"GZnmeE\":\"Tệp không thể tải lên\",\"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\",\"VHmXZm\":\"Tải lên đính kèm\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Trang web\",\"RCU5PY\":\"Tuổi\",\"K7tIrx\":\"Danh mục\",\"5+87Pq\":\"Thông báo\",\"xDAtGP\":\"Nội dụng tin nhắn\",\"I6gXOa\":\"Đường dẫn\",\"T/87By\":\"Tham số\",\"QrhaVg\":\"Đơn vị\",\"ZqLOh/\":\"Sửa tham số phụ kiện\",\"xr44aD\":\"Đã cập nhật các tham số phụ kiện\",\"uuJqm+\":\"Xóa tham số phụ kiện\",\"uiC/uu\":\"Đã xóa tham số phụ kiện\",\"dfMVxh\":\"Bạn có chắc chắn muốn xóa tham số này không?\",\"iwRvX8\":\"Thêm tham số phụ kiện\",\"wzEEM5\":\"Đã thêm tham số phụ kiện\",\"2tuwGz\":\"Thêm tham số\",\"/g9i/Z\":\"Bao gồm các biến thể\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Kho hàng\",\"YA4hwj\":\"Khoảng giá\",\"yzF66j\":\"Liên kết\",\"F6pfE9\":\"Hoạt động\",\"PHri/6\":\"Lọc theo trạng thái mở phụ kiện\",\"WL36Yh\":\"Lắp ráp\",\"oQzKsK\":\"Lọc theo thuộc tính lắp ráp\",\"NgZniC\":\"Bao gồm danh mục con\",\"5JhtGd\":\"Bao gồm phụ kiên trong danh mục con\",\"dK3Z9j\":\"Thành phần\",\"oO7QIX\":\"Lọc theo thuộc tính thành phần\",\"y6MnU0\":\"Có thể theo dõi\",\"MbixSq\":\"Lọc theo thuộc tính có thể theo dõi\",\"YyRdJQ\":\"Có đơn vị\",\"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\",\"UgdO7s\":\"Còn ít hàng\",\"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\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Thêm phụ kiện liên quan\",\"Vssu+n\":\"Phụ kiện liên quan\",\"yxfxt9\":\"Phụ kiện liên quan đã được thêm\",\"xG+5dj\":\"Thêm phụ kiện liên quan\",\"/kFxhJ\":\"Xóa phụ kiện liên quan\",\"oNps5U\":\"Phụ kiện liên quan đã được xóa\",\"ZKMkzF\":\"Bạn có chắc chắn muốn xóa mối quan hệ này không?\",\"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\",\"9YdyZU\":\"Mô tả không có sẵn\",\"eE0JZ4\":\"Phiên bản\",\"5y3O+A\":\"Hủy kích hoạt\",\"FQBaXG\":\"Kích hoạt\",\"++LBSt\":\"Gắn liền\",\"LcJmOR\":\"Mẫu\",\"eQkgKV\":\"Đã cài đặt\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"MbRyzp\":\"Định nghĩa\",\"8Ps70y\":\"Biểu tượng\",\"I0CAZ4\":\"Sửa đơn vị tùy chỉnh\",\"JOoGLt\":\"Đơn vị tùy chỉnh đã được cập nhật\",\"2351D8\":\"Xóa đơn vị tùy chỉnh\",\"ik2+Rh\":\"Đơn vị tùy chỉnh đã bị xóa\",\"jB4fNr\":\"Bạn muốn xóa đơn vị tùy chỉnh này không?\",\"VzcXtA\":\"Thêm đơn vị tùy chỉnh\",\"2Aout5\":\"Đơn vị tùy chỉnh đã được tạo\",\"NsoM0i\":\"Sửa mã dự án\",\"IKDsBC\":\"Mã dự án đã được cập nhật\",\"imeh6U\":\"Xóa mã dự án\",\"XVAUxk\":\"Mã dự án đã được xóa\",\"fwToP9\":\"Bạn có chắc chắn là muốn xóa mã dự án này?\",\"6K55qI\":\"Thêm mã dự án\",\"lCmbZd\":\"Mã dự án đã được thêm\",\"rsx3xA\":\"Lệnh gộp\",\"wJijgU\":\"Vị trí\",\"VikQny\":\"Kiểm thử bộ lọc\",\"ay6lVf\":\"Đây là bộ lọc kiểm thử\",\"PRKZBP\":\"Cấu trúc\",\"bVhrVt\":\"Bên ngoài\",\"4sg5Qp\":\"Loại vị trí\",\"DdjH42\":\"Cài đặt hiển thị\",\"FpsvqB\":\"Chế độ màu sắc\",\"vXIe7J\":\"Ngôn ngữ\",\"T/IST7\":\"Một số thứ mới: Nền tảng UI\",\"gSWyZa\":\"Chúng tôi đang xây dựng một UI mới với kiến trúc hiện đại. Thứ bạn nhìn thấy sẽ không được sửa và sẽ được thiết kế lại nhưng chứng tỏ khả năng UI/UX đang được cải tiến.\",\"GNA6/Q\":\"Cung cấp phản hồi\",\"7hktsm\":\"Bắt đầu\",\"jFggGL\":\"Lỗi tải ảnh lên\",\"BtQ2Mv\":\"Ghi chú đã được lưu\",\"vBI46M\":\"Không lưu được chú thích\",\"rdU729\":\"Bố cục\",\"Nw+C4g\":\"Đặt lại bố cục\",\"fOql7D\":\"Ngưng chỉnh sửa\",\"NZubw3\":\"Sửa bố cục\",\"aAIQg2\":\"Diện mạo\",\"cG3uIP\":\"Hiển thị hộp\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Phụ kiện đã đăng ký\",\"GuGbPw\":\"Danh mục đã đăng ký\",\"LcKNFQ\":\"Phụ kiện mới nhất\",\"eHUZsJ\":\"BOM đợi phê chuẩn\",\"ZopSbj\":\"Mới Cập Nhật\",\"Onj2Pw\":\"Nguyên liệu đã cạn\",\"Iq/utX\":\"Yêu cầu cho đơn đặt bản dựng\",\"ZOsmSm\":\"Kho hàng quá hạn\",\"kc9cAF\":\"Sản phẩm để lâu\",\"zLhIiS\":\"Đơn đặt bản dựng đang thực hiện\",\"UBWkDy\":\"Đơn đặt bản dựng đang quá hạn\",\"WsHr9R\":\"Đơn đặt mua nổi bật\",\"fCNzWA\":\"Đơn mua quá hạn\",\"gyZThB\":\"Đơn hàng nổi bật\",\"Gu8K8T\":\"Đơn đặt quá hạn\",\"XzTq3p\":\"Tin hiện tại\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Trang chủ\",\"7p5kLi\":\"Bảng điều khiển\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Sân chơi\",\"4GLxhy\":\"Bắt đầu\",\"VAYCzI\":\"Bắt đầu với 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\",\"kyAi7k\":\"Thực thể\",\"Q5S3DY\":\"Về thực thể Inventree\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"Giới thiệu InvenTree org\",\"snyG+w\":\"Giấy phép\",\"tBjIo1\":\"Bản quyền cho gói được dùng bởi InventTree\",\"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\":\"Trang profile\",\"CFYxhi\":\"Thuốc tính người dùng và thiết lập thiết kế.\",\"uP4V6I\":\"Free for everyone\",\"dyMOjI\":\"The fluid of Smeargle’s tail secretions changes\",\"PrR19h\":\"Khung nhìn để quét tương tác và đa chức năng.\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Lỗi gọi chữ ký số từ máy chủ.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Đăng xuất thành công\",\"aJhI/3\":\"Hẹn gặp lại.\",\"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\",\"iVj6ge\":\"Đã đăng nhập\",\"FR/+0K\":\"Tìm thấy một tài khoản đã tồn tại - hãy sử dụng nó để đăng nhập.\",\"3X1ZLb\":\"Lỗi form\",\"x5LTam\":\"Phương thức biểu mẫu chưa được cung cấp\",\"Y/uvnA\":\"Phản hồi không chứa dữ liệu chức năng\",\"Pya8ub\":\"Mẫu không hợp lệ\",\"D6wyts\":\"tham số phương thức không được cung cấp\",\"8uQpHD\":\"Thêm tệp tin\",\"V4WsyL\":\"Thêm liên kết\",\"TzSMET\":\"Tệp tin đã được thêm\",\"GvlLvd\":\"Liên kết đã được thêm\",\"xtmR+6\":\"Sửa tệp tin\",\"gDx5MG\":\"Sửa liên kết\",\"TKcCLO\":\"Tệp tin đã được cập nhật\",\"AEUkAQ\":\"Liên kết đã được cập nhật\",\"hZfPb3\":\"Xóa tệp đính kèm\",\"iDEbsu\":\"Đã xóa tệp đính kèm\",\"1oL0IJ\":\"Bạn có chắc chắn muốn xóa tập tin đính kèm này?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Tạo phụ kiện\",\"LDesI6\":\"Phụ kiện đã tạo\",\"enG3o5\":\"Sửa phụ kiện\",\"+g4LWF\":\"Phụ kiện đã cập nhật\",\"oATGL2\":\"Danh mục phụ kiện cha\",\"qyS7x9\":\"Thêm số lượng đã có theo gói thay vì các mục đơn lẻ\",\"LWFE8j\":\"Nhập số lượng khởi đầu cho kho hàng này\",\"VzQT2x\":\"Số sê-ri\",\"0dR85g\":\"Điền số sê-ri cho kho mới (hoặc để trống)\",\"4xXnZr\":\"Tạo hàng trong kho\",\"gQgYNs\":\"Sửa hàng trong kho\",\"ipE2p4\":\"Chưa triển khai\",\"WvSApV\":\"Tính năng này vẫn chưa được triển khai\",\"sJK6pq\":\"Quyền truy cập bị từ chối\",\"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\"]],\"ps9k8Y\":\"Đang kiểm tra trạng thái đăng nhập của bạn\",\"bX1aQ5\":\"Không có lựa chọn\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Gửi mail\",\"eV2FZ+\":\"Token không hợp lệ\",\"uAHzZQ\":\"Bạn cần cung cấp chữ ký số hợp lệ để đặt mật khẩu mới. Kiểm tra hộp thư của bạn để lấy 1 liên kết tạo lại.\",\"+5xxir\":\"Chưa cung cấp chữ ký số\",\"KuLTFa\":\"Bạn cần cung cấp chữ ký số để đặt mật khẩu mới. Kiểm tra hộp thư của bạn để lấy 1 liên kết tạo lại.\",\"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\",\"V/e7nf\":\"Đặt mật khẩu mới\",\"TpqeIh\":[\"Lỗi: \",[\"0\"]],\"b3ilvM\":\"Xin lỗi, lỗi bất ngờ đã xảy ra.\",\"edpMcF\":\"Tự động cập nhật\",\"0s/I4H\":\"Trang này đã được thay thế cho trang khởi động cũ với thông tin tương tự. Trang này sẽ bị lỗi thời và thay thế bởi trang chủ.\",\"2DfxO0\":\"Chào mừng bạn đến với bảng điều khiển của bạn\",\"ZLvUR5\":\"Trang này là trình diễn tính năng dự kiến cho nền tảng UI.\",\"eKHY3W\":\"Thiết lập phần bổ sung\",\"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\":\"Thông tin người dung\",\"JOUEkZ\":[\"Tên - \",[\"0\"]],\"GlGzeI\":[\"Họ - \",[\"0\"]],\"PkcDO7\":[\"Tên đăng nhập: \",[\"0\"]],\"PsXasD\":\"Sử dụng ngôn ngữ pseudo\",\"M46ISI\":\"thanh\",\"Ai6veK\":\"trái xoan\",\"8zGXnJ\":\"chấm\",\"gDIqhx\":\"Thiết kế <0/>\",\"QFd2P1\":\"Màu chủ đạo\",\"160vo+\":\"Màu trắng\",\"u01284\":\"Màu đen\",\"bjp1xg\":\"Bo viền\",\"EBeoY+\":\"Thanh tải\",\"pS7MTY\":\"Nhập thủ công\",\"29Om2/\":\"Mã vạch dạng ảnh\",\"dQStih\":\"Chọn phần tử chưa được biết đến\",\"Oik3bo\":\"Đã chọn nhiều loại đối tượng\",\"RlLl3G\":[\"Chức năng cho \",[\"0\"]],\"wBMjJ2\":\"Đếm\",\"T2Wq4D\":\"Quét trang\",\"cXiEKg\":\"Trang này hữu dụng khi quét liên tục các mục và thao tác với chúng.\",\"qBZttg\":\"Chọn phương thức nhập liệu bạn muốn để dùng quét mục.\",\"XU5AOg\":\"Nhập liệu\",\"kY/87m\":\"Chọn phương thức nhập liệu\",\"ow3fug\":\"Không tìm thấy\",\"66J/c0\":\"Tùy vào sản phẩm được chọn, chức năng sẽ được hiển thị ở đây. Hiện tại chưa hỗ trợ tất cả các loại mã vạch.\",\"bwRvnp\":\"Thao tác\",\"sQhVFe\":[\"đã chọn \",[\"0\"],\" mục\"],\"U+sonC\":\"Chức năng chung\",\"H8H7u6\":\"Tra cứu phụ kiện\",\"sliuzR\":\"Mở liên kết\",\"mM7dgZ\":\"Lịch sử được lưu tạm trên trình duyệt của máy này.\",\"s9lCxX\":\"Lịch sử được giữ trong lưu trữ nội bộ trình duyệt. Vậy nó sẽ không thể được chia sẻ với người dùng khác hoặc thiết bị khác nhưng nó vẫn tồn tại bền bỉ cho dù có nạp lại trang. Bạn có thể chọn mục trong lịch sử để thao tác với chúng. Để thêm mục, quét/nhập chúng trong khu vực nhập liệu.\",\"0caMy7\":\"Lịch sử\",\"nB43gC\":\"Chưa có lịch sử\",\"HX5SVx\":\"Hàng hóa\",\"+zy2Nq\":\"Loại\",\"wdxz7K\":\"Nguồn\",\"PvB8gr\":\"Quét lúc\",\"mPrJo6\":\"Nhập sê-ri hàng hóa hoặc dữ liệu\",\"gUm1Y0\":\"Thêm mục giả lập\",\"sGH11W\":\"Máy chủ\",\"z0t9bb\":\"Đăng nhập\",\"HCTGDT\":\"Mã vạch\",\"AklCpf\":\"Mã dự án\",\"+aCQna\":\"Đơn vị vật lí\",\"aHCEmh\":\"Giá bán\",\"h8DugX\":\"Nhãn\",\"ApEshE\":\"Báo cáo\",\"TxrNvj\":\"Tham số phụ kiện\",\"d5IWFK\":\"Kiểm kê\",\"RCVhIP\":\"Đơn đặt bản dựng\",\"AeXO77\":\"Tài khoản\",\"+4YDgS\":\"Tùy chọn hiển thị\",\"ekfzWq\":\"Cài đặt người dùng\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Không tìm thấy\",\"FeQ++0\":\"Rất tiếc, trang này không tồn tại hoặc đã bị xóa.\",\"wmCIch\":\"Chuyển đến trang đầu\",\"5GPcf9\":\"Đánh dấu chưa đọc\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Chi tiết bản dựng\",\"L1LMmH\":\"Phân kho\",\"E9en8O\":\"Đầu ra chưa hoàn hiện\",\"Mzv4va\":\"Đầu ra hoàn thiện\",\"US3GCq\":\"Kho tiêu thụ\",\"CVlgqS\":\"Đơn đặt bản dựng con\",\"w/Sphq\":\"Đính kèm\",\"1DBGsz\":\"Ghi chú\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Đơn đặt bản dựng\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"Tạo đơn đặt bản dựng\",\"URmyfc\":\"Chi tiết\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Thông số\",\"SDRhYQ\":\"Biến thể\",\"/637F4\":\"Hóa đơn nguyên vật liệu\",\"5M5Kdm\":\"Sử dụng trong\",\"9RecCt\":\"Nhà cung cấp\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Mẫu thử nghiệm\",\"AAoGm5\":\"Phụ kiện liên quan\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Theo dõi tồn kho\",\"KwhnxF\":\"Phân bổ\",\"xnskHi\":\"Mục đã cài đặt\",\"K4v96J\":\"Mục con\",\"OWg6Ht\":\"Khung nhìn màn hình di dộng đã được nhận dạng\",\"j1oKmM\":\"Giao diện nền tảng được tối ưu cho máy tính bảng và máy để bàn, bạn có thể sử dụng ứng dụng chính thức cho trải nghiệm di động.\",\"NtcqDr\":\"Đọc tài liệu\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/zh-hans/messages.ts b/src/frontend/src/locales/zh-hans/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/zh-hans/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/locales/zh-hant/messages.ts b/src/frontend/src/locales/zh-hant/messages.ts deleted file mode 100644 index 12d1e5dd26..0000000000 --- a/src/frontend/src/locales/zh-hant/messages.ts +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{\"MHrjPM\":\"Title\",\"zzDlyQ\":\"Success\",\"rl7FGt\":\"Form Errors Exist\",\"dEgA5A\":\"Cancel\",\"hQRttt\":\"Submit\",\"4GKuCs\":\"Login failed\",\"tnaYa/\":\"Check your input and try again.\",\"jCsNQS\":\"Check your your input and try again.\",\"6cPKtu\":\"Login successful\",\"rxWA39\":\"Welcome back!\",\"zM9Wd+\":\"Login successfull\",\"XAIcYu\":\"Mail delivery successful\",\"R2JMfc\":\"Check your inbox for the login link. If you have an account, you will receive a login link. Check in spam too.\",\"yfblq9\":\"Mail delivery successfull\",\"ccnxuA\":\"Input error\",\"BL4vL0\":\"Welcome, log in below\",\"7sNhEz\":\"Username\",\"8ZsakT\":\"Password\",\"9TO8nT\":\"Your password\",\"RfwZxd\":\"Reset password\",\"O3oNi5\":\"Email\",\"Wr5sDQ\":\"We will send you a link to login - if you are registered\",\"sQia9P\":\"Log in\",\"7ZOmjI\":\"Send me an email\",\"XlWstl\":\"I will use username and password\",\"ADVQ46\":\"Log In\",\"i/TzEU\":\"Send Email\",\"Ai2U7L\":\"Host\",\"6YtxFj\":\"Name\",\"yWMzcH\":\"No one here...\",\"UYWLpE\":\"Add Host\",\"tfDRzk\":\"Save\",\"GG8+B2\":\"Select destination instance\",\"uqEJlE\":\"Edit possible host options\",\"GUtCZC\":[\"Version: \",[\"0\"]],\"4/F1y3\":[\"API:\",[\"0\"]],\"UVRlfm\":[\"Name: \",[\"0\"]],\"ed0N/H\":[\"State: <0>worker (\",[\"0\"],\"), <1>plugins\",[\"1\"]],\"SlfejT\":\"Error\",\"A1taO8\":\"Search\",\"yQE2r9\":\"Loading\",\"AxPAXW\":\"No results found\",\"sGeXL3\":\"Thumbnail\",\"IvkbIT\":\"Read More\",\"29VNqC\":\"Unknown error\",\"nlJhkA\":\"An error occurred:\",\"Qoq+GP\":\"Read more\",\"DVAy0b\":\"InvenTree Logo\",\"3TnJRX\":\"This feature/button/site is a placeholder for a feature that is not implemented, only partial or intended for testing.\",\"etqXdW\":\"PLH\",\"Uox1LM\":\"This panel is a placeholder.\",\"XDwkfO\":\"Scan QR code\",\"l75CjT\":\"Yes\",\"1UzENP\":\"No\",\"GU7xAr\":\"Unknown response\",\"UHot+L\":\"Error while getting camera\",\"bR26mb\":\"Error while scanning\",\"fvJQqd\":\"Error while stopping\",\"CMQ09J\":\"Scanning\",\"Fg9r/3\":\"Not scanning\",\"QuNKRX\":\"Select Camera\",\"m3BKG+\":\"Start scanning\",\"yFRXH8\":\"Stop scanning\",\"3164SS\":\"No scans yet!\",\"RWw9Lg\":\"Close modal\",\"vERlcd\":\"Profile\",\"Tz0i8g\":\"Settings\",\"T3FM0r\":\"Account settings\",\"zNkWa6\":\"System Settings\",\"ohUJJM\":\"Plugins\",\"r5Xdbs\":[\"Current language \",[\"locale\"]],\"XXvCbv\":\"Switch to pseudo language\",\"nOhz3x\":\"Logout\",\"rmlxV1\":\"Open Navigation\",\"N6Pxr9\":\"View all\",\"ZDIydz\":\"Get started\",\"BQDL+H\":\"Overview over high-level objects, functions and possible usecases.\",\"UxKoFf\":\"Navigation\",\"wRR604\":\"Pages\",\"TvY/XA\":\"Documentation\",\"uyJsf6\":\"About\",\"iDNBZe\":\"Notifications\",\"t2pqHO\":\"You have no unread notifications.\",\"+s1J8k\":\"Mark as read\",\"mO8KLE\":\"results\",\"Dwt0g3\":\"Enter search text\",\"9UYKcs\":\"Search Options\",\"qkCZlJ\":\"Regex search\",\"roauu/\":\"Whole word search\",\"hJCuaV\":\"An error occurred during search query\",\"Ev2r9A\":\"No results\",\"dTtbrX\":\"No results available for search query\",\"5iarLn\":[\"Unknown model: \",[\"model\"]],\"vgP+9p\":\"Part\",\"pmRbKZ\":\"Parts\",\"hAddRl\":\"Part Parameter Template\",\"UrnQgP\":\"Part Parameter Templates\",\"nne72x\":\"Supplier Part\",\"FcNRrt\":\"Supplier Parts\",\"bisS0I\":\"Manufacturer Part\",\"d0fBfb\":\"Manufacturer Parts\",\"QXANxH\":\"Part Category\",\"2GkbLI\":\"Part Categories\",\"igx8Og\":\"Stock Item\",\"Jbck4N\":\"Stock Items\",\"adXdas\":\"Stock Location\",\"1eBWAw\":\"Stock Locations\",\"cE4TWF\":\"Stock History\",\"rewkgt\":\"Stock Histories\",\"iSiFYa\":\"Build\",\"3400Lv\":\"Builds\",\"7i8j3G\":\"Company\",\"s2QZS6\":\"Companies\",\"KxySMG\":\"Purchase Order\",\"85Yvr2\":\"Purchase Orders\",\"Enr0Pf\":\"Purchase Order Line\",\"MXjnQS\":\"Purchase Order Lines\",\"LozYBo\":\"Sales Order\",\"B1TL+X\":\"Sales Orders\",\"qGSobR\":\"Sales Order Shipment\",\"D/EkfS\":\"Sales Order Shipments\",\"Z6ve1w\":\"Return Order\",\"LlTg8M\":\"Return Orders\",\"Du6bPw\":\"Address\",\"bYmAV1\":\"Addresses\",\"jfC/xh\":\"Contact\",\"gVfVfe\":\"Contacts\",\"LtI9AS\":\"Owner\",\"CYRJEX\":\"Owners\",\"7PzzBU\":\"User\",\"Sxm8rQ\":\"Users\",\"4fws5M\":\"Shipment\",\"C3htzi\":\"Setting updated\",\"FImCSc\":[[\"0\"],\" updated successfully\"],\"CsUgn+\":\"Error editing setting\",\"mjN1LS\":\"Edit Setting\",\"kCTFU8\":\"Select Columns\",\"6N5Lt+\":\"CSV\",\"Keu6yk\":\"TSV\",\"UR8vqQ\":\"Excel\",\"w+nnwj\":\"Download selected data\",\"rn2/2V\":\"Remove filter\",\"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\",\"o7J4JM\":\"Filter\",\"hpMOSe\":\"Select filter\",\"wMHvYH\":\"Value\",\"Fo55lj\":\"Select filter value\",\"PzFzS+\":\"Add Filter\",\"EqGTpW\":\"No records found\",\"3o3AAs\":\"Server returned incorrect data type\",\"UFBeQV\":\"Bad request\",\"dA/8If\":\"Unauthorized\",\"7JBW66\":\"Forbidden\",\"KPx1UV\":\"Not found\",\"v1qpjB\":\"Barcode actions\",\"inVgrM\":\"Print actions\",\"8RYNR1\":\"Refresh data\",\"j2wMlR\":\"Table filters\",\"7L01XJ\":\"Actions\",\"N2C89m\":\"Reference\",\"Nu4oKW\":\"Description\",\"Sdfr6G\":\"Project Code\",\"VbWX2u\":\"Quantity\",\"qqWcBV\":\"Completed\",\"uAQUqI\":\"Status\",\"1hKEom\":\"Priority\",\"d+F6q9\":\"Created\",\"ZmykKo\":\"Target Date\",\"kmUN8p\":\"Issued By\",\"XQACoK\":\"Responsible\",\"UY1vmE\":\"Attachment\",\"NBdIgR\":\"Comment\",\"3wG7HI\":\"Uploaded\",\"ePK91l\":\"Edit\",\"cnGeoo\":\"Delete\",\"FJqE4H\":\"File uploaded\",\"3LxYDr\":[\"File \",[\"0\"],\" uploaded successfully\"],\"ae3dey\":\"Upload Error\",\"GZnmeE\":\"File could not be uploaded\",\"V8euYO\":\"Add attachment\",\"DpV4ac\":\"Add external link\",\"32o8IC\":\"No attachments found\",\"VHmXZm\":\"Upload attachment\",\"zGbOVS\":\"Company Name\",\"On0aF2\":\"Website\",\"RCU5PY\":\"Age\",\"K7tIrx\":\"Category\",\"5+87Pq\":\"Notification\",\"xDAtGP\":\"Message\",\"I6gXOa\":\"Path\",\"T/87By\":\"Parameter\",\"QrhaVg\":\"Units\",\"ZqLOh/\":\"Edit Part Parameter\",\"xr44aD\":\"Part parameter updated\",\"uuJqm+\":\"Delete Part Parameter\",\"uiC/uu\":\"Part parameter deleted\",\"dfMVxh\":\"Are you sure you want to remove this parameter?\",\"iwRvX8\":\"Add Part Parameter\",\"wzEEM5\":\"Part parameter added\",\"2tuwGz\":\"Add parameter\",\"/g9i/Z\":\"Include Variants\",\"3wXEsN\":\"IPN\",\"blbbPS\":\"Stock\",\"YA4hwj\":\"Price Range\",\"yzF66j\":\"Link\",\"F6pfE9\":\"Active\",\"PHri/6\":\"Filter by part active status\",\"WL36Yh\":\"Assembly\",\"oQzKsK\":\"Filter by assembly attribute\",\"NgZniC\":\"Include Subcategories\",\"5JhtGd\":\"Include parts in subcategories\",\"dK3Z9j\":\"Component\",\"oO7QIX\":\"Filter by component attribute\",\"y6MnU0\":\"Trackable\",\"MbixSq\":\"Filter by trackable attribute\",\"YyRdJQ\":\"Has Units\",\"WyFVby\":\"Filter by parts which have units\",\"c9/Fqb\":\"Has IPN\",\"jh/Aa+\":\"Filter by parts which have an internal part number\",\"JqmfuT\":\"Has Stock\",\"6Kd+HK\":\"Filter by parts which have stock\",\"UgdO7s\":\"Low Stock\",\"GDYPCw\":\"Filter by parts which have low stock\",\"TW9g28\":\"Purchaseable\",\"KMdl2R\":\"Filter by parts which are purchaseable\",\"/3xNJ4\":\"Salable\",\"V5i7hf\":\"Filter by parts which are salable\",\"ksX7Wx\":\"Virtual\",\"QDTpY6\":\"Filter by parts which are virtual\",\"+SkaI8\":\"Not Virtual\",\"rRDi3Y\":\"Detail\",\"K0+pq1\":\"Add Related Part\",\"Vssu+n\":\"Related Part\",\"yxfxt9\":\"Related part added\",\"xG+5dj\":\"Add related part\",\"/kFxhJ\":\"Delete Related Part\",\"oNps5U\":\"Related part deleted\",\"ZKMkzF\":\"Are you sure you want to remove this relationship?\",\"QqLLp2\":\"Plugin is active\",\"s99Mc1\":\"Plugin is inactive\",\"LtEW/l\":\"Plugin is not installed\",\"fOuPPd\":\"Plugin\",\"9YdyZU\":\"Description not available\",\"eE0JZ4\":\"Version\",\"5y3O+A\":\"Deactivate\",\"FQBaXG\":\"Activate\",\"++LBSt\":\"Builtin\",\"LcJmOR\":\"Sample\",\"eQkgKV\":\"Installed\",\"PYTEl0\":\"Supplier\",\"K7PVg3\":\"Supplier Reference\",\"SgduFH\":\"Line Items\",\"876pfE\":\"Customer\",\"ZVUe1A\":\"Customer Reference\",\"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?\",\"VzcXtA\":\"Add custom unit\",\"2Aout5\":\"Custom unit created\",\"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?\",\"6K55qI\":\"Add project code\",\"lCmbZd\":\"Added project code\",\"rsx3xA\":\"Batch\",\"wJijgU\":\"Location\",\"VikQny\":\"Test Filter\",\"ay6lVf\":\"This is a test filter\",\"PRKZBP\":\"Structural\",\"bVhrVt\":\"External\",\"4sg5Qp\":\"Location Type\",\"DdjH42\":\"Display Settings\",\"FpsvqB\":\"Color Mode\",\"vXIe7J\":\"Language\",\"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\",\"vBI46M\":\"Failed to save notes\",\"rdU729\":\"Layout\",\"Nw+C4g\":\"Reset Layout\",\"fOql7D\":\"Stop Edit\",\"NZubw3\":\"Edit Layout\",\"aAIQg2\":\"Appearance\",\"cG3uIP\":\"Show Boxes\",\"w9VTXG\":\"Czech\",\"Fo2vDn\":\"Danish\",\"DDcvSo\":\"German\",\"CZXzs4\":\"Greek\",\"lYGfRP\":\"English\",\"65A04M\":\"Spanish\",\"xB5BGV\":\"Spanish (Mexican)\",\"A64kM8\":\"Farsi / Persian\",\"USZ2N6\":\"Finnish\",\"nLC6tu\":\"French\",\"3oTCgM\":\"Hebrew\",\"tGjibo\":\"Hindi\",\"mkWad2\":\"Hungarian\",\"Lj7sBL\":\"Italian\",\"dFtidv\":\"Japanese\",\"h6S9Yz\":\"Korean\",\"KIjvtr\":\"Dutch\",\"1IipHp\":\"Norwegian\",\"trnWaw\":\"Polish\",\"MOERNx\":\"Portuguese\",\"KCh9+J\":\"Portuguese (Brazilian)\",\"nji0/X\":\"Russian\",\"LSdcWW\":\"Slovenian\",\"UaISq3\":\"Swedish\",\"SUr44j\":\"Thai\",\"Kz91g/\":\"Turkish\",\"fROFIL\":\"Vietnamese\",\"6imsQS\":\"Chinese (Simplified)\",\"DM4gBB\":\"Chinese (Traditional)\",\"5QTyaY\":\"Subscribed Parts\",\"GuGbPw\":\"Subscribed Categories\",\"LcKNFQ\":\"Latest Parts\",\"eHUZsJ\":\"BOM Waiting Validation\",\"ZopSbj\":\"Recently Updated\",\"Onj2Pw\":\"Depleted Stock\",\"Iq/utX\":\"Required for Build Orders\",\"ZOsmSm\":\"Expired Stock\",\"kc9cAF\":\"Stale Stock\",\"zLhIiS\":\"Build Orders In Progress\",\"UBWkDy\":\"Overdue Build Orders\",\"WsHr9R\":\"Outstanding Purchase Orders\",\"fCNzWA\":\"Overdue Purchase Orders\",\"gyZThB\":\"Outstanding Sales Orders\",\"Gu8K8T\":\"Overdue Sales Orders\",\"XzTq3p\":\"Current News\",\"tMMrz4\":\"InvenTree Demo\",\"vu8/DU\":\"Local Server\",\"RkXlPZ\":\"GitHub\",\"kc+zZA\":\"Demo\",\"i0qMbr\":\"Home\",\"7p5kLi\":\"Dashboard\",\"UOTpFa\":\"Purchasing\",\"mUv9U4\":\"Sales\",\"0LrFTO\":\"Playground\",\"4GLxhy\":\"Getting Started\",\"VAYCzI\":\"Getting started with InvenTree\",\"OZtEcz\":\"API\",\"aW0h/b\":\"InvenTree API documentation\",\"BOAupq\":\"Developer Manual\",\"kUcL4g\":\"InvenTree developer manual\",\"/lDBHm\":\"FAQ\",\"a3pVqb\":\"Frequently asked questions\",\"kyAi7k\":\"Instance\",\"Q5S3DY\":\"About this Inventree instance\",\"vHeNia\":\"InvenTree\",\"gfhzPz\":\"About the InvenTree org\",\"snyG+w\":\"Licenses\",\"tBjIo1\":\"Licenses for packages used by InvenTree\",\"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\",\"a3LDKx\":\"Security\",\"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\",\"8/1bpV\":\"Error fetching token from server.\",\"FKQcYZ\":\"Logout successfull\",\"Py+E6e\":\"Logout successful\",\"aJhI/3\":\"See you soon.\",\"eX0txO\":\"Check your inbox for a reset link. This only works if you have an account. Check in spam too.\",\"WhimMi\":\"Reset failed\",\"iVj6ge\":\"Already logged in\",\"FR/+0K\":\"Found an existing login - using it to log you in.\",\"3X1ZLb\":\"Form Error\",\"x5LTam\":\"Form method not provided\",\"Y/uvnA\":\"Response did not contain action data\",\"Pya8ub\":\"Invalid Form\",\"D6wyts\":\"method parameter not supplied\",\"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\",\"hZfPb3\":\"Delete Attachment\",\"iDEbsu\":\"Attachment deleted\",\"1oL0IJ\":\"Are you sure you want to delete this attachment?\",\"HoG6cl\":\"Edit Company\",\"E7xvdq\":\"Company updated\",\"22eAtb\":\"Create Part\",\"LDesI6\":\"Part created\",\"enG3o5\":\"Edit Part\",\"+g4LWF\":\"Part updated\",\"oATGL2\":\"Parent part category\",\"qyS7x9\":\"Add given quantity as packs instead of individual items\",\"LWFE8j\":\"Enter initial quantity for this stock item\",\"VzQT2x\":\"Serial Numbers\",\"0dR85g\":\"Enter serial numbers for new stock (or leave blank)\",\"4xXnZr\":\"Create Stock Item\",\"gQgYNs\":\"Edit Stock Item\",\"ipE2p4\":\"Not implemented\",\"WvSApV\":\"This feature is not yet implemented\",\"sJK6pq\":\"Permission denied\",\"3WjGlZ\":\"You do not have permission to perform this action\",\"J7PX+R\":\"Invalid Return Code\",\"78bD8l\":[\"Server returned status \",[\"returnCode\"]],\"ps9k8Y\":\"Checking if you are already logged in\",\"bX1aQ5\":\"No selection\",\"AA2j+t\":\"Edit host options\",\"F+gz9Z\":\"Send mail\",\"eV2FZ+\":\"Token invalid\",\"uAHzZQ\":\"You need to provide a valid token to set a new password. Check your inbox for a reset link.\",\"+5xxir\":\"No token provided\",\"KuLTFa\":\"You need to provide a token to set a new password. Check your inbox for a reset link.\",\"Hw2MHB\":\"Password set\",\"+p8fKY\":\"The password was set successfully. You can now login with your new password\",\"V/e7nf\":\"Set new password\",\"TpqeIh\":[\"Error: \",[\"0\"]],\"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.\",\"eKHY3W\":\"Plugin Settings\",\"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\",\"JOUEkZ\":[\"First name: \",[\"0\"]],\"GlGzeI\":[\"Last name: \",[\"0\"]],\"PkcDO7\":[\"Username: \",[\"0\"]],\"PsXasD\":\"Use pseudo language\",\"M46ISI\":\"bars\",\"Ai6veK\":\"oval\",\"8zGXnJ\":\"dots\",\"gDIqhx\":\"Design <0/>\",\"QFd2P1\":\"Primary color\",\"160vo+\":\"White color\",\"u01284\":\"Black color\",\"bjp1xg\":\"Border Radius\",\"EBeoY+\":\"Loader\",\"pS7MTY\":\"Manual input\",\"29Om2/\":\"Image Barcode\",\"dQStih\":\"Selected elements are not known\",\"Oik3bo\":\"Multiple object types selected\",\"RlLl3G\":[\"Actions for \",[\"0\"]],\"wBMjJ2\":\"Count\",\"T2Wq4D\":\"Scan Page\",\"cXiEKg\":\"This page can be used for continuously scanning items and taking actions on them.\",\"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.\",\"bwRvnp\":\"Action\",\"sQhVFe\":[[\"0\"],\" items selected\"],\"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.\",\"0caMy7\":\"History\",\"nB43gC\":\"No history\",\"HX5SVx\":\"Item\",\"+zy2Nq\":\"Type\",\"wdxz7K\":\"Source\",\"PvB8gr\":\"Scanned at\",\"mPrJo6\":\"Enter item serial or data\",\"gUm1Y0\":\"Add dummy item\",\"sGH11W\":\"Server\",\"z0t9bb\":\"Login\",\"HCTGDT\":\"Barcodes\",\"AklCpf\":\"Project Codes\",\"+aCQna\":\"Physical Units\",\"aHCEmh\":\"Pricing\",\"h8DugX\":\"Labels\",\"ApEshE\":\"Reporting\",\"TxrNvj\":\"Part Parameters\",\"d5IWFK\":\"Stocktake\",\"RCVhIP\":\"Build Orders\",\"AeXO77\":\"Account\",\"+4YDgS\":\"Display Options\",\"ekfzWq\":\"User Settings\",\"xyAcm2\":\"Found an exsisting login - using it to log you in.\",\"pAtylB\":\"Not Found\",\"FeQ++0\":\"Sorry, this page is not known or was moved.\",\"wmCIch\":\"Go to the start page\",\"5GPcf9\":\"Mark as unread\",\"mY+KgP\":\"Base Part\",\"kXDwva\":\"Build Status\",\"98Q4bz\":\"Build Details\",\"L1LMmH\":\"Allocate Stock\",\"E9en8O\":\"Incomplete Outputs\",\"Mzv4va\":\"Completed Outputs\",\"US3GCq\":\"Consumed Stock\",\"CVlgqS\":\"Child Build Orders\",\"w/Sphq\":\"Attachments\",\"1DBGsz\":\"Notes\",\"heU0Hk\":\"Barcode Actions\",\"jpctdh\":\"View\",\"VSd7DB\":\"View part barcode\",\"3Bbgw2\":\"Link Barcode\",\"ILmSgE\":\"Link custom barcode to part\",\"ut1J8k\":\"Unlink Barcode\",\"+UKDx2\":\"Unlink custom barcode from part\",\"Tyj32s\":\"Reporting Actions\",\"gjpdaf\":\"Report\",\"V7w5fl\":\"Print build report\",\"YxwWvi\":\"Build Order\",\"tDgG1Y\":\"Build Order Actions\",\"imB4Wr\":\"Edit build order\",\"euc6Ns\":\"Duplicate\",\"BmclYe\":\"Duplicate build order\",\"ltuPrj\":\"Delete build order\",\"bwuG2V\":\"New Build Order\",\"URmyfc\":\"Details\",\"glJbgw\":\"Manufactured Parts\",\"i4b9ex\":\"Supplied Parts\",\"TVGEcl\":\"Assigned Stock\",\"z+ZEYC\":\"Company Actions\",\"EjxtPT\":\"Edit company\",\"VBpmg6\":\"Delete company\",\"+m9/3S\":\"Manufacturer\",\"7lonqg\":\"Subcategories\",\"F18WP3\":\"Parameters\",\"SDRhYQ\":\"Variants\",\"/637F4\":\"Bill of Materials\",\"5M5Kdm\":\"Used In\",\"9RecCt\":\"Suppliers\",\"DbZMYM\":\"Scheduling\",\"eeXE8u\":\"Test Templates\",\"AAoGm5\":\"Related Parts\",\"bbA1t1\":\"Stock Actions\",\"n/p2QJ\":\"Count Stock\",\"4Qpffa\":\"Count part stock\",\"9efe+k\":\"Transfer Stock\",\"tnr8CD\":\"Transfer part stock\",\"loB51L\":\"Part Actions\",\"zt/pSE\":\"Edit part\",\"FFYpjf\":\"Duplicate part\",\"metDDP\":\"Delete part\",\"NUrY9o\":\"Categories\",\"Tol4BF\":\"Order Details\",\"b447qM\":\"Received Stock\",\"E0ub4Q\":\"Manufacturers\",\"NihQNk\":\"Customers\",\"qC/FEC\":\"Pending Shipments\",\"polrQd\":\"Completed Shipments\",\"L7/8CO\":\"Sublocations\",\"IdrYoA\":\"Stock Tracking\",\"KwhnxF\":\"Allocations\",\"xnskHi\":\"Installed Items\",\"K4v96J\":\"Child Items\",\"OWg6Ht\":\"Mobile viewport detected\",\"j1oKmM\":\"Platform UI is optimized for Tablets and Desktops, you can use the official app for a mobile experience.\",\"NtcqDr\":\"Read the docs\"}"); \ No newline at end of file diff --git a/src/frontend/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx b/src/frontend/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx index 575ca8b0bb..f2e92f4a6c 100644 --- a/src/frontend/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx +++ b/src/frontend/src/pages/Index/Settings/AccountSettings/AccountDetailPanel.tsx @@ -1,4 +1,4 @@ -import { Trans } from '@lingui/macro'; +import { Trans, t } from '@lingui/macro'; import { Button, Group, Stack, Text, TextInput, Title } from '@mantine/core'; import { useForm } from '@mantine/form'; import { useToggle } from '@mantine/hooks'; @@ -37,13 +37,13 @@ export function AccountDetailPanel() { {editing ? ( @@ -55,10 +55,12 @@ export function AccountDetailPanel() { ) : ( - First name: {form.values.first_name} + First name: + {form.values.first_name} - Last name: {form.values.last_name} + Last name: + {form.values.last_name} )} diff --git a/src/frontend/src/pages/build/BuildDetail.tsx b/src/frontend/src/pages/build/BuildDetail.tsx index 940fa5e061..bb8aaf62bf 100644 --- a/src/frontend/src/pages/build/BuildDetail.tsx +++ b/src/frontend/src/pages/build/BuildDetail.tsx @@ -1,5 +1,5 @@ import { t } from '@lingui/macro'; -import { Group, LoadingOverlay, Stack, Table } from '@mantine/core'; +import { Group, LoadingOverlay, Skeleton, Stack, Table } from '@mantine/core'; import { IconClipboardCheck, IconClipboardList, @@ -78,7 +78,7 @@ export default function BuildDetail() { {t`Build Status`} - {build.status && ( + {build?.status && ( { - return StatusRenderer({ - status: build.status, - type: ModelType.build - }); + return build?.status ? ( + StatusRenderer({ + status: build.status, + type: ModelType.build + }) + ) : ( + + ); }, [build, id]); return ( diff --git a/src/frontend/src/states/states.tsx b/src/frontend/src/states/states.tsx index 103bd807d0..5b44087192 100644 --- a/src/frontend/src/states/states.tsx +++ b/src/frontend/src/states/states.tsx @@ -37,6 +37,7 @@ export interface ServerAPIProps { platform: null | string; installer: null | string; target: null | string; + default_locale: null | string; } // Type interface defining a single 'setting' object diff --git a/tasks.py b/tasks.py index 16489760fa..547b7d7e82 100644 --- a/tasks.py +++ b/tasks.py @@ -298,7 +298,7 @@ def static(c, frontend=False): manage(c, 'prerender') if frontend and node_available(): frontend_build(c) - manage(c, 'collectstatic --no-input') + manage(c, 'collectstatic --no-input --clear') @task