Merge branch 'master' into docker-psql-fix

This commit is contained in:
Oliver 2025-02-11 20:04:40 +11:00 committed by GitHub
commit f8ce4f3f79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
107 changed files with 21038 additions and 19938 deletions

View File

@ -1,10 +1,13 @@
# Python Django
# Test a Django project on multiple versions of Python.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
trigger: trigger:
- master batch: true
branches:
include:
- master
- stable
- refs/tags/*
paths:
include:
- src/backend
pool: pool:
vmImage: ubuntu-latest vmImage: ubuntu-latest
@ -37,17 +40,19 @@ steps:
print('##vso[task.setvariable variable=projectRoot]{}'.format(project_location)) print('##vso[task.setvariable variable=projectRoot]{}'.format(project_location))
- script: | - script: |
python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade pip setuptools wheel uv
pip install --require-hashes -r requirements.txt uv pip install --require-hashes -r src/backend/requirements.txt
pip install --require-hashes -r requirements-dev.txt uv pip install --require-hashes -r src/backend/requirements-dev.txt
pip install unittest-xml-reporting coverage invoke
sudo apt-get install poppler-utils sudo apt-get install poppler-utils
sudo apt-get install libpoppler-dev sudo apt-get install libpoppler-dev
uv pip install unittest-xml-reporting coverage invoke
displayName: 'Install prerequisites' displayName: 'Install prerequisites'
env:
UV_SYSTEM_PYTHON: 1
- script: | - script: |
pushd '$(projectRoot)' pushd '$(projectRoot)'
invoke update invoke update --uv
coverage run manage.py test --testrunner xmlrunner.extra.djangotestrunner.XMLTestRunner --no-input coverage run manage.py test --testrunner xmlrunner.extra.djangotestrunner.XMLTestRunner --no-input
coverage xml -i coverage xml -i
displayName: 'Run tests' displayName: 'Run tests'
@ -57,7 +62,11 @@ steps:
INVENTREE_MEDIA_ROOT: ./media INVENTREE_MEDIA_ROOT: ./media
INVENTREE_STATIC_ROOT: ./static INVENTREE_STATIC_ROOT: ./static
INVENTREE_BACKUP_DIR: ./backup INVENTREE_BACKUP_DIR: ./backup
INVENTREE_SITE_URL: http://localhost:8000
INVENTREE_PLUGINS_ENABLED: true INVENTREE_PLUGINS_ENABLED: true
UV_SYSTEM_PYTHON: 1
INVENTREE_DEBUG: true
INVENTREE_LOG_LEVEL: INFO
- task: PublishTestResults@2 - task: PublishTestResults@2
inputs: inputs:
@ -65,7 +74,6 @@ steps:
testRunTitle: 'Python $(PYTHON_VERSION)' testRunTitle: 'Python $(PYTHON_VERSION)'
condition: succeededOrFailed() condition: succeededOrFailed()
- task: PublishCodeCoverageResults@1 - task: PublishCodeCoverageResults@2
inputs: inputs:
codeCoverageTool: Cobertura
summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml' summaryFileLocation: '$(System.DefaultWorkingDirectory)/**/coverage.xml'

View File

@ -130,13 +130,13 @@ jobs:
rm -rf InvenTree/_testfolder rm -rf InvenTree/_testfolder
- name: Set up QEMU - name: Set up QEMU
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/setup-qemu-action@53851d14592bedcffcf25ea515637cff71ef929a # pin@v3.3.0 uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # pin@v3.4.0
- name: Set up Docker Buildx - name: Set up Docker Buildx
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # pin@v3.8.0 uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # pin@v3.9.0
- name: Set up cosign - name: Set up cosign
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@dc72c7d5c4d10cd6bcb8cf6e3fd625a9e5e537da # pin@v3.7.0 uses: sigstore/cosign-installer@c56c2d3e59e4281cc41dea2217323ba5694b171e # pin@v3.8.0
- name: Check if Dockerhub login is required - name: Check if Dockerhub login is required
id: docker_login id: docker_login
run: | run: |

View File

@ -653,7 +653,7 @@ jobs:
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload SARIF file - name: Upload SARIF file
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # pin@v3 uses: github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # pin@v3
with: with:
sarif_file: results.sarif sarif_file: results.sarif
category: zizmor category: zizmor

View File

@ -67,6 +67,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard. # Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning" - name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8 uses: github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9
with: with:
sarif_file: results.sarif sarif_file: results.sarif

View File

@ -9,6 +9,7 @@
[![Documentation Status](https://readthedocs.org/projects/inventree/badge/?version=latest)](https://inventree.readthedocs.io/en/latest/?badge=latest) [![Documentation Status](https://readthedocs.org/projects/inventree/badge/?version=latest)](https://inventree.readthedocs.io/en/latest/?badge=latest)
![Docker Build](https://github.com/inventree/inventree/actions/workflows/docker.yaml/badge.svg) ![Docker Build](https://github.com/inventree/inventree/actions/workflows/docker.yaml/badge.svg)
[![Netlify Status](https://api.netlify.com/api/v1/badges/9bbb2101-0a4d-41e7-ad56-b63fb6053094/deploy-status)](https://app.netlify.com/sites/inventree/deploys) [![Netlify Status](https://api.netlify.com/api/v1/badges/9bbb2101-0a4d-41e7-ad56-b63fb6053094/deploy-status)](https://app.netlify.com/sites/inventree/deploys)
[![Performance Testing](https://dev.azure.com/InvenTree/InvenTree%20test%20statistics/_apis/build/status%2Fmatmair.InvenTree?branchName=testing)](https://dev.azure.com/InvenTree/InvenTree%20test%20statistics/_build/latest?definitionId=3&branchName=testing)
[![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7179/badge)](https://bestpractices.coreinfrastructure.org/projects/7179) [![OpenSSF Best Practices](https://bestpractices.coreinfrastructure.org/projects/7179/badge)](https://bestpractices.coreinfrastructure.org/projects/7179)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/inventree/InvenTree/badge)](https://securityscorecards.dev/viewer/?uri=github.com/inventree/InvenTree) [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/inventree/InvenTree/badge)](https://securityscorecards.dev/viewer/?uri=github.com/inventree/InvenTree)
@ -156,7 +157,7 @@ If you use InvenTree and find it to be useful, please consider [sponsoring the p
## :gem: Acknowledgements ## :gem: Acknowledgements
We want to acknowledge [PartKeepr](https://github.com/partkeepr/PartKeepr) as a valuable predecessor and inspiration. We want to acknowledge [PartKeepr](https://github.com/partkeepr/PartKeepr) as a valuable predecessor and inspiration.
Find a full list of used third-party libraries in [our documentation](https://docs.inventree.org/en/latest/credits/). Find a full list of used third-party libraries in the license information dialog of your instance.
## :heart: Support ## :heart: Support

View File

@ -25,6 +25,24 @@ You probably have a reference to invoke or a directory with invoke in your PATH
### INVE-W (InvenTree Warning) ### INVE-W (InvenTree Warning)
Warnings - These are non-critical errors which should be addressed when possible. Warnings - These are non-critical errors which should be addressed when possible.
#### INVE-W1
**Current branch could not be detected - Backend**
During startup of the backend InvenTree tries to detect branch, commit hash and commit date to surface on various points in the UI, through tags and in the API.
This information is not needed for operation but very helpful for debugging and support. These issues might be caused by running a deployment version that delivers without git information, not having git installed or not having dulwich installed.
You can ignore this warning if you are not interested in the git information.
#### INVE-W2
**Dulwich module not found - Backend**
See [INVE-W1](#inve-w1)
#### INVE-W3
**Could not detect git information - Backend**
See [INVE-W1](#inve-w1)
### INVE-I (InvenTree Information) ### INVE-I (InvenTree Information)
Information — These are not errors but information messages. They might point out potential issues or just provide information. Information — These are not errors but information messages. They might point out potential issues or just provide information.

View File

@ -20,6 +20,9 @@
}, },
{ {
"pattern": "https://opensource.org/license/MIT" "pattern": "https://opensource.org/license/MIT"
},
{
"pattern": "^https://dev.azure.com"
} }
] ]
} }

View File

@ -10,9 +10,6 @@ import string
import warnings import warnings
from pathlib import Path from pathlib import Path
from django.core.files.base import ContentFile
from django.core.files.storage import Storage
logger = logging.getLogger('inventree') logger = logging.getLogger('inventree')
CONFIG_DATA = None CONFIG_DATA = None
CONFIG_LOOKUPS = {} CONFIG_LOOKUPS = {}
@ -77,6 +74,9 @@ def ensure_dir(path: Path, storage=None) -> None:
If it does not exist, create it. If it does not exist, create it.
""" """
from django.core.files.base import ContentFile
from django.core.files.storage import Storage
if storage and isinstance(storage, Storage): if storage and isinstance(storage, Storage):
if not storage.exists(str(path)): if not storage.exists(str(path)):
storage.save(str(path / '.empty'), ContentFile('')) storage.save(str(path / '.empty'), ContentFile(''))
@ -238,12 +238,15 @@ def get_boolean_setting(env_var=None, config_key=None, default_value=False):
return is_true(get_setting(env_var, config_key, default_value)) return is_true(get_setting(env_var, config_key, default_value))
def get_media_dir(create=True): def get_media_dir(create=True, error=True):
"""Return the absolute path for the 'media' directory (where uploaded files are stored).""" """Return the absolute path for the 'media' directory (where uploaded files are stored)."""
md = get_setting('INVENTREE_MEDIA_ROOT', 'media_root') md = get_setting('INVENTREE_MEDIA_ROOT', 'media_root')
if not md: if not md:
raise FileNotFoundError('INVENTREE_MEDIA_ROOT not specified') if error:
raise FileNotFoundError('INVENTREE_MEDIA_ROOT not specified')
else:
return None
md = Path(md).resolve() md = Path(md).resolve()
@ -253,12 +256,15 @@ def get_media_dir(create=True):
return md return md
def get_static_dir(create=True): def get_static_dir(create=True, error=True):
"""Return the absolute path for the 'static' directory (where static files are stored).""" """Return the absolute path for the 'static' directory (where static files are stored)."""
sd = get_setting('INVENTREE_STATIC_ROOT', 'static_root') sd = get_setting('INVENTREE_STATIC_ROOT', 'static_root')
if not sd: if not sd:
raise FileNotFoundError('INVENTREE_STATIC_ROOT not specified') if error:
raise FileNotFoundError('INVENTREE_STATIC_ROOT not specified')
else:
return None
sd = Path(sd).resolve() sd = Path(sd).resolve()
@ -268,12 +274,15 @@ def get_static_dir(create=True):
return sd return sd
def get_backup_dir(create=True): def get_backup_dir(create=True, error=True):
"""Return the absolute path for the backup directory.""" """Return the absolute path for the backup directory."""
bd = get_setting('INVENTREE_BACKUP_DIR', 'backup_dir') bd = get_setting('INVENTREE_BACKUP_DIR', 'backup_dir')
if not bd: if not bd:
raise FileNotFoundError('INVENTREE_BACKUP_DIR not specified') if error:
raise FileNotFoundError('INVENTREE_BACKUP_DIR not specified')
else:
return None
bd = Path(bd).resolve() bd = Path(bd).resolve()

View File

@ -171,7 +171,7 @@ SECRET_KEY = config.get_secret_key()
# The filesystem location for served static files # The filesystem location for served static files
STATIC_ROOT = config.get_static_dir() STATIC_ROOT = config.get_static_dir()
# The filesystem location for uploaded meadia files # The filesystem location for uploaded media files
MEDIA_ROOT = config.get_media_dir() MEDIA_ROOT = config.get_media_dir()
# Needed for the parts importer, directly impacts the maximum parts that can be uploaded # Needed for the parts importer, directly impacts the maximum parts that can be uploaded
@ -1290,7 +1290,7 @@ ACCOUNT_DEFAULT_HTTP_PROTOCOL = get_setting(
if ACCOUNT_DEFAULT_HTTP_PROTOCOL is None: if ACCOUNT_DEFAULT_HTTP_PROTOCOL is None:
if SITE_URL and SITE_URL.startswith('https://'): if SITE_URL and SITE_URL.startswith('https://'):
# auto-detect HTTPS prtoocol # auto-detect HTTPS protocol
ACCOUNT_DEFAULT_HTTP_PROTOCOL = 'https' ACCOUNT_DEFAULT_HTTP_PROTOCOL = 'https'
else: else:
# default to http # default to http
@ -1361,7 +1361,7 @@ MARKDOWNIFY = {
} }
} }
# Ignore these error typeps for in-database error logging # Ignore these error types for in-database error logging
IGNORED_ERRORS = [Http404, django.core.exceptions.PermissionDenied] IGNORED_ERRORS = [Http404, django.core.exceptions.PermissionDenied]
# Maintenance mode # Maintenance mode
@ -1420,7 +1420,7 @@ if CUSTOM_FLAGS:
SESAME_MAX_AGE = 300 SESAME_MAX_AGE = 300
LOGIN_REDIRECT_URL = '/api/auth/login-redirect/' LOGIN_REDIRECT_URL = '/api/auth/login-redirect/'
# Configuratino for API schema generation # Configuration for API schema generation
SPECTACULAR_SETTINGS = { SPECTACULAR_SETTINGS = {
'TITLE': 'InvenTree API', 'TITLE': 'InvenTree API',
'DESCRIPTION': 'API for InvenTree - the intuitive open source inventory management system', 'DESCRIPTION': 'API for InvenTree - the intuitive open source inventory management system',

View File

@ -26,19 +26,28 @@ logger = logging.getLogger('inventree')
# Discover git # Discover git
try: try:
from dulwich.porcelain import active_branch
from dulwich.repo import Repo from dulwich.repo import Repo
main_repo = Repo(pathlib.Path(__file__).parent.parent.parent.parent.parent) main_repo = Repo(pathlib.Path(__file__).parent.parent.parent.parent.parent)
main_commit = main_repo[main_repo.head()] main_commit = main_repo[main_repo.head()]
try:
main_branch = active_branch(main_repo)
except (KeyError, IndexError):
logger.warning('INVE-W1: Current branch could not be detected.')
main_branch = None
except ImportError: except ImportError:
logger.warning( logger.warning(
'Warning: Dulwich module not found, git information will not be available.' 'INVE-W2: Dulwich module not found, git information will not be available.'
) )
main_repo = None main_repo = None
main_commit = None main_commit = None
except Exception: main_branch = None
except Exception as exc:
logger.warning('INVE-W3: Could not detect git information.', exc_info=exc)
main_repo = None main_repo = None
main_commit = None main_commit = None
main_branch = None
def checkMinPythonVersion(): def checkMinPythonVersion():
@ -270,14 +279,9 @@ def inventreeBranch():
if branch: if branch:
return branch return branch
if main_commit is None: if main_branch is None:
return None return None
return main_branch.decode('utf-8')
try:
branch = main_repo.refs.follow(b'HEAD')[0][1].decode()
return branch.removeprefix('refs/heads/')
except IndexError:
return None # pragma: no cover
def inventreeTarget(): def inventreeTarget():

View File

@ -217,6 +217,12 @@ USER_SETTINGS: dict[str, InvenTreeSettingsKeyType] = {
'validator': [int, MinValueValidator(0)], 'validator': [int, MinValueValidator(0)],
'default': 100, 'default': 100,
}, },
'ENABLE_LAST_BREADCRUMB': {
'name': _('Show Last Breadcrumb'),
'description': _('Show the current page in breadcrumbs'),
'default': False,
'validator': bool,
},
'NOTIFICATION_ERROR_REPORT': { 'NOTIFICATION_ERROR_REPORT': {
'name': _('Receive error reports'), 'name': _('Receive error reports'),
'description': _('Receive notifications for system errors'), 'description': _('Receive notifications for system errors'),

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -185,69 +185,64 @@ click==8.1.8 \
--hash=sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2 \ --hash=sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2 \
--hash=sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a --hash=sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a
# via pip-tools # via pip-tools
coverage[toml]==7.6.10 \ coverage[toml]==7.6.11 \
--hash=sha256:05fca8ba6a87aabdd2d30d0b6c838b50510b56cdcfc604d40760dae7153b73d9 \ --hash=sha256:050172741de03525290e67f0161ae5f7f387c88fca50d47fceb4724ceaa591d2 \
--hash=sha256:0aa9692b4fdd83a4647eeb7db46410ea1322b5ed94cd1715ef09d1d5922ba87f \ --hash=sha256:08e5fb93576a6b054d3d326242af5ef93daaac9bb52bc25f12ccbc3fa94227cd \
--hash=sha256:0c807ca74d5a5e64427c8805de15b9ca140bba13572d6d74e262f46f50b13273 \ --hash=sha256:09d03f48d9025b8a6a116cddcb6c7b8ce80e4fb4c31dd2e124a7c377036ad58e \
--hash=sha256:0d7a2bf79378d8fb8afaa994f91bfd8215134f8631d27eba3e0e2c13546ce994 \ --hash=sha256:0d03c9452d9d1ccfe5d3a5df0427705022a49b356ac212d529762eaea5ef97b4 \
--hash=sha256:0f460286cb94036455e703c66988851d970fdfd8acc2a1122ab7f4f904e4029e \ --hash=sha256:13100f98497086b359bf56fc035a762c674de8ef526daa389ac8932cb9bff1e0 \
--hash=sha256:204a8238afe787323a8b47d8be4df89772d5c1e4651b9ffa808552bdf20e1d50 \ --hash=sha256:25575cd5a7d2acc46b42711e8aff826027c0e4f80fb38028a74f31ac22aae69d \
--hash=sha256:2396e8116db77789f819d2bc8a7e200232b7a282c66e0ae2d2cd84581a89757e \ --hash=sha256:27700d859be68e4fb2e7bf774cf49933dcac6f81a9bc4c13bd41735b8d26a53b \
--hash=sha256:254f1a3b1eef5f7ed23ef265eaa89c65c8c5b6b257327c149db1ca9d4a35f25e \ --hash=sha256:2c81e53782043b323bd34c7de711ed9b4673414eb517eaf35af92185b873839c \
--hash=sha256:26bcf5c4df41cad1b19c84af71c22cbc9ea9a547fc973f1f2cc9a290002c8b3c \ --hash=sha256:397489c611b76302dfa1d9ea079e138dddc4af80fc6819d5f5119ec8ca6c0e47 \
--hash=sha256:27c6e64726b307782fa5cbe531e7647aee385a29b2107cd87ba7c0105a5d3853 \ --hash=sha256:476f29a258b9cd153f2be5bf5f119d670d2806363595263917bddc167d6e5cce \
--hash=sha256:299e91b274c5c9cdb64cbdf1b3e4a8fe538a7a86acdd08fae52301b28ba297f8 \ --hash=sha256:4bda710139ea646890d1c000feb533caff86904a0e0638f85e967c28cb8eec50 \
--hash=sha256:2bcfa46d7709b5a7ffe089075799b902020b62e7ee56ebaed2f4bdac04c508d8 \ --hash=sha256:4cf96beb05d004e4c51cd846fcdf9eee9eb2681518524b66b2e7610507944c2f \
--hash=sha256:2ccf240eb719789cedbb9fd1338055de2761088202a9a0b73032857e53f612fe \ --hash=sha256:4f21e3617f48d683f30cf2a6c8b739c838e600cb1454fe6b2eb486ac2bce8fbd \
--hash=sha256:32ee6d8491fcfc82652a37109f69dee9a830e9379166cb73c16d8dc5c2915165 \ --hash=sha256:5128f3ba694c0a1bde55fc480090392c336236c3e1a10dad40dc1ab17c7675ff \
--hash=sha256:3f7b444c42bbc533aaae6b5a2166fd1a797cdb5eb58ee51a92bee1eb94a1e1cb \ --hash=sha256:532fe139691af134aa8b54ed60dd3c806aa81312d93693bd2883c7b61592c840 \
--hash=sha256:457574f4599d2b00f7f637a0700a6422243b3565509457b2dbd3f50703e11f59 \ --hash=sha256:5a3f7cbbcb4ad95067a6525f83a6fc78d9cbc1e70f8abaeeaeaa72ef34f48fc3 \
--hash=sha256:489a01f94aa581dbd961f306e37d75d4ba16104bbfa2b0edb21d29b73be83609 \ --hash=sha256:5b48db06f53d1864fea6dbd855e6d51d41c0f06c212c3004511c0bdc6847b297 \
--hash=sha256:4bcc276261505d82f0ad426870c3b12cb177752834a633e737ec5ee79bbdff18 \ --hash=sha256:5e7ac966ab110bd94ee844f2643f196d78fde1cd2450399116d3efdd706e19f5 \
--hash=sha256:4e0de1e902669dccbf80b0415fb6b43d27edca2fbd48c74da378923b05316098 \ --hash=sha256:5edc16712187139ab635a2e644cc41fc239bc6d245b16124045743130455c652 \
--hash=sha256:4e4630c26b6084c9b3cb53b15bd488f30ceb50b73c35c5ad7871b869cb7365fd \ --hash=sha256:60d4ad09dfc8c36c4910685faafcb8044c84e4dae302e86c585b3e2e7778726c \
--hash=sha256:4eea95ef275de7abaef630c9b2c002ffbc01918b726a39f5a4353916ec72d2f3 \ --hash=sha256:61c834cbb80946d6ebfddd9b393a4c46bec92fcc0fa069321fcb8049117f76ea \
--hash=sha256:507a20fc863cae1d5720797761b42d2d87a04b3e5aeb682ef3b7332e90598f43 \ --hash=sha256:6ba27a0375c5ef4d2a7712f829265102decd5ff78b96d342ac2fa555742c4f4f \
--hash=sha256:54a5f0f43950a36312155dae55c505a76cd7f2b12d26abeebbe7a0b36dbc868d \ --hash=sha256:6c96a142057d83ee993eaf71629ca3fb952cda8afa9a70af4132950c2bd3deb9 \
--hash=sha256:55b201b97286cf61f5e76063f9e2a1d8d2972fc2fcfd2c1272530172fd28c359 \ --hash=sha256:6d60577673ba48d8ae8e362e61fd4ad1a640293ffe8991d11c86f195479100b7 \
--hash=sha256:59af35558ba08b758aec4d56182b222976330ef8d2feacbb93964f576a7e7a90 \ --hash=sha256:7eb0504bb307401fd08bc5163a351df301438b3beb88a4fa044681295bbefc67 \
--hash=sha256:5c912978f7fbf47ef99cec50c4401340436d200d41d714c7a4766f377c5b7b78 \ --hash=sha256:8e433b6e3a834a43dae2889adc125f3fa4c66668df420d8e49bc4ee817dd7a70 \
--hash=sha256:656c82b8a0ead8bba147de9a89bda95064874c91a3ed43a00e687f23cc19d53a \ --hash=sha256:8fa4fffd90ee92f62ff7404b4801b59e8ea8502e19c9bf2d3241ce745b52926c \
--hash=sha256:6713ba4b4ebc330f3def51df1d5d38fad60b66720948112f114968feb52d3f99 \ --hash=sha256:90de4e9ca4489e823138bd13098af9ac8028cc029f33f60098b5c08c675c7bda \
--hash=sha256:675cefc4c06e3b4c876b85bfb7c59c5e2218167bbd4da5075cbe3b5790a28988 \ --hash=sha256:a165b09e7d5f685bf659063334a9a7b1a2d57b531753d3e04bd442b3cfe5845b \
--hash=sha256:6f93531882a5f68c28090f901b1d135de61b56331bba82028489bc51bdd818d2 \ --hash=sha256:a46d56e99a31d858d6912d31ffa4ede6a325c86af13139539beefca10a1234ce \
--hash=sha256:714f942b9c15c3a7a5fe6876ce30af831c2ad4ce902410b7466b662358c852c0 \ --hash=sha256:ac476e6d0128fb7919b3fae726de72b28b5c9644cb4b579e4a523d693187c551 \
--hash=sha256:79109c70cc0882e4d2d002fe69a24aa504dec0cc17169b3c7f41a1d341a73694 \ --hash=sha256:ac5d92e2cc121a13270697e4cb37e1eb4511ac01d23fe1b6c097facc3b46489e \
--hash=sha256:7bbd8c8f1b115b892e34ba66a097b915d3871db7ce0e6b9901f462ff3a975377 \ --hash=sha256:adc2d941c0381edfcf3897f94b9f41b1e504902fab78a04b1677f2f72afead4b \
--hash=sha256:7ed2f37cfce1ce101e6dffdfd1c99e729dd2ffc291d02d3e2d0af8b53d13840d \ --hash=sha256:b6ff5be3b1853e0862da9d349fe87f869f68e63a25f7c37ce1130b321140f963 \
--hash=sha256:7fb105327c8f8f0682e29843e2ff96af9dcbe5bab8eeb4b398c6a33a16d80a23 \ --hash=sha256:bb35ae9f134fbd9cf7302a9654d5a1e597c974202678082dcc569eb39a8cde03 \
--hash=sha256:89d76815a26197c858f53c7f6a656686ec392b25991f9e409bcef020cd532312 \ --hash=sha256:be05bde21d5e6eefbc3a6de6b9bee2b47894b8945342e8663192809c4d1f08ce \
--hash=sha256:9a7cfb50515f87f7ed30bc882f68812fd98bc2852957df69f3003d22a2aa0abf \ --hash=sha256:c27df03730059118b8a923cfc8b84b7e9976742560af528242f201880879c1da \
--hash=sha256:9e1747bab246d6ff2c4f28b4d186b205adced9f7bd9dc362051cc37c4a0c7bd6 \ --hash=sha256:c7719a5e1dc93883a6b319bc0374ecd46fb6091ed659f3fbe281ab991634b9b0 \
--hash=sha256:9e80eba8801c386f72e0712a0453431259c45c3249f0009aff537a517b52942b \ --hash=sha256:c86f4c7a6d1a54a24d804d9684d96e36a62d3ef7c0d7745ae2ea39e3e0293251 \
--hash=sha256:a01ec4af7dfeb96ff0078ad9a48810bb0cc8abcb0115180c6013a6b26237626c \ --hash=sha256:ca95d40900cf614e07f00cee8c2fad0371df03ca4d7a80161d84be2ec132b7a4 \
--hash=sha256:a372c89c939d57abe09e08c0578c1d212e7a678135d53aa16eec4430adc5e690 \ --hash=sha256:cd4839813b09ab1dd1be1bbc74f9a7787615f931f83952b6a9af1b2d3f708bf7 \
--hash=sha256:a3b204c11e2b2d883946fe1d97f89403aa1811df28ce0447439178cc7463448a \ --hash=sha256:db4b1a69976b1b02acda15937538a1d3fe10b185f9d99920b17a740a0a102e06 \
--hash=sha256:a534738b47b0de1995f85f582d983d94031dffb48ab86c95bdf88dc62212142f \ --hash=sha256:dbb1a822fd858d9853333a7c95d4e70dde9a79e65893138ce32c2ec6457d7a36 \
--hash=sha256:a5e37dc41d57ceba70956fa2fc5b63c26dba863c946ace9705f8eca99daecdc4 \ --hash=sha256:de6b079b39246a7da9a40cfa62d5766bd52b4b7a88cf5a82ec4c45bf6e152306 \
--hash=sha256:aa744da1820678b475e4ba3dfd994c321c5b13381d1041fe9c608620e6676e25 \ --hash=sha256:df6ff122a0a10a30121d9f0cb3fbd03a6fe05861e4ec47adb9f25e9245aabc19 \
--hash=sha256:ab32947f481f7e8c763fa2c92fd9f44eeb143e7610c4ca9ecd6a36adab4081bd \ --hash=sha256:e0b0f272901a5172090c0802053fbc503cdc3fa2612720d2669a98a7384a7bec \
--hash=sha256:abb02e2f5a3187b2ac4cd46b8ced85a0858230b577ccb2c62c81482ca7d18852 \ --hash=sha256:e2778be4f574b39ec9dcd9e5e13644f770351ee0990a0ecd27e364aba95af89b \
--hash=sha256:b330368cb99ef72fcd2dc3ed260adf67b31499584dc8a20225e85bfe6f6cfed0 \ --hash=sha256:e3b746fa0ffc5b6b8856529de487da8b9aeb4fb394bb58de6502ef45f3434f12 \
--hash=sha256:bc67deb76bc3717f22e765ab3e07ee9c7a5e26b9019ca19a3b063d9f4b874244 \ --hash=sha256:e642e6a46a04e992ebfdabed79e46f478ec60e2c528e1e1a074d63800eda4286 \
--hash=sha256:c0b1818063dc9e9d838c09e3a473c1422f517889436dd980f5d721899e66f315 \ --hash=sha256:eafea49da254a8289bed3fab960f808b322eda5577cb17a3733014928bbfbebd \
--hash=sha256:c56e097019e72c373bae32d946ecf9858fda841e48d82df7e81c63ac25554078 \ --hash=sha256:f0f334ae844675420164175bf32b04e18a81fe57ad8eb7e0cfd4689d681ffed7 \
--hash=sha256:c7827a5bc7bdb197b9e066cdf650b2887597ad124dd99777332776f7b7c7d0d0 \ --hash=sha256:f382004fa4c93c01016d9226b9d696a08c53f6818b7ad59b4e96cb67e863353a \
--hash=sha256:ccc2b70a7ed475c68ceb548bf69cec1e27305c1c2606a5eb7c3afff56a1b3b27 \ --hash=sha256:f4679fcc9eb9004fdd1b00231ef1ec7167168071bebc4d66327e28c1979b4449 \
--hash=sha256:d37a84878285b903c0fe21ac8794c6dab58150e9359f1aaebbeddd6412d53132 \ --hash=sha256:fd2fffc8ce8692ce540103dff26279d2af22d424516ddebe2d7e4d6dbb3816b2 \
--hash=sha256:e2f0280519e42b0a17550072861e0bc8a80a0870de260f9796157d3fca2733c5 \ --hash=sha256:ff136607689c1c87f43d24203b6d2055b42030f352d5176f9c8b204d4235ef27 \
--hash=sha256:e4ae5ac5e0d1e4edfc9b4b57b4cbecd5bc266a6915c500f358817a8496739247 \ --hash=sha256:ff52b4e2ac0080c96e506819586c4b16cdbf46724bda90d308a7330a73cc8521 \
--hash=sha256:e67926f51821b8e9deb6426ff3164870976fe414d033ad90ea75e7ed0c2e5022 \ --hash=sha256:ff562952f15eff27247a4c4b03e45ce8a82e3fb197de6a7c54080f9d4ba07845
--hash=sha256:e78b270eadb5702938c3dbe9367f878249b5ef9a2fcc5360ac7bff694310d17b \
--hash=sha256:ea3c8f04b3e4af80e17bab607c386a830ffc2fb88a5484e1df756478cf70d1d3 \
--hash=sha256:ec22b5e7fe7a0fa8509181c4aac1db48f3dd4d3a566131b313d1efc102892c18 \
--hash=sha256:f4f620668dbc6f5e909a0946a877310fb3d57aea8198bde792aae369ee1c23b5 \
--hash=sha256:fd34e7b3405f0cc7ab03d54a334c17a9e802897580d964bd8c2001f4b9fd488f
# via -r src/backend/requirements-dev.in # via -r src/backend/requirements-dev.in
cryptography==43.0.3 \ cryptography==43.0.3 \
--hash=sha256:0c580952eef9bf68c4747774cde7ec1d85a6e61de97281f2dba83c7d2c806362 \ --hash=sha256:0c580952eef9bf68c4747774cde7ec1d85a6e61de97281f2dba83c7d2c806362 \
@ -284,9 +279,9 @@ distlib==0.3.9 \
--hash=sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87 \ --hash=sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87 \
--hash=sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403 --hash=sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403
# via virtualenv # via virtualenv
django==4.2.18 \ django==4.2.19 \
--hash=sha256:52ae8eacf635617c0f13b44f749e5ea13dc34262819b2cc8c8636abb08d82c4b \ --hash=sha256:6c833be4b0ca614f0a919472a1028a3bbdeb6f056fa04023aeb923346ba2c306 \
--hash=sha256:ba52eff7e228f1c775d5b0db2ba53d8c49d2f8bfe6ca0234df6b7dd12fb25b19 --hash=sha256:a104e13f219fc55996a4e416ef7d18ab4eeb44e0aa95174c192f16cda9f94e75
# via # via
# -c src/backend/requirements.txt # -c src/backend/requirements.txt
# django-slowtests # django-slowtests
@ -304,9 +299,9 @@ filelock==3.17.0 \
--hash=sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338 \ --hash=sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338 \
--hash=sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e --hash=sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e
# via virtualenv # via virtualenv
identify==2.6.6 \ identify==2.6.7 \
--hash=sha256:7bec12768ed44ea4761efb47806f0a41f86e7c0a5fdf5950d4648c90eca7e251 \ --hash=sha256:155931cb617a401807b09ecec6635d6c692d180090a1cedca8ef7d58ba5b6aa0 \
--hash=sha256:cbd1810bce79f8b671ecb20f53ee0ae8e86ae84b557de31d89709dc2a48ba881 --hash=sha256:3fa266b42eba321ee0b2bb0936a6a6b9e36a1351cbb69055b3082f4193035684
# via pre-commit # via pre-commit
importlib-metadata==8.5.0 \ importlib-metadata==8.5.0 \
--hash=sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b \ --hash=sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b \

View File

@ -382,9 +382,9 @@ deprecated==1.2.18 \
dj-rest-auth==7.0.0 \ dj-rest-auth==7.0.0 \
--hash=sha256:08dbc03a35223872da9f59bc2d7a71bec2e721aa69f7cdc84c7a329aeae1f86e --hash=sha256:08dbc03a35223872da9f59bc2d7a71bec2e721aa69f7cdc84c7a329aeae1f86e
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
django==4.2.18 \ django==4.2.19 \
--hash=sha256:52ae8eacf635617c0f13b44f749e5ea13dc34262819b2cc8c8636abb08d82c4b \ --hash=sha256:6c833be4b0ca614f0a919472a1028a3bbdeb6f056fa04023aeb923346ba2c306 \
--hash=sha256:ba52eff7e228f1c775d5b0db2ba53d8c49d2f8bfe6ca0234df6b7dd12fb25b19 --hash=sha256:a104e13f219fc55996a4e416ef7d18ab4eeb44e0aa95174c192f16cda9f94e75
# via # via
# -r src/backend/requirements.in # -r src/backend/requirements.in
# dj-rest-auth # dj-rest-auth
@ -416,8 +416,8 @@ django==4.2.18 \
# djangorestframework # djangorestframework
# djangorestframework-simplejwt # djangorestframework-simplejwt
# drf-spectacular # drf-spectacular
django-allauth[openid, saml]==65.3.1 \ django-allauth[openid, saml]==65.4.1 \
--hash=sha256:e02e951b71a2753a746459f2efa114c7c72bf2cef6887dbe8607a577c0350587 --hash=sha256:60b32aef7dbbcc213319aa4fd8f570e985266ea1162ae6ef7a26a24efca85c8c
# via # via
# -r src/backend/requirements.in # -r src/backend/requirements.in
# django-allauth-2fa # django-allauth-2fa
@ -429,9 +429,9 @@ django-cleanup==9.0.0 \
--hash=sha256:19f8b0e830233f9f0f683b17181f414672a0f48afe3ea3cc80ba47ae40ad880c \ --hash=sha256:19f8b0e830233f9f0f683b17181f414672a0f48afe3ea3cc80ba47ae40ad880c \
--hash=sha256:bb9fb560aaf62959c81e31fa40885c36bbd5854d5aa21b90df2c7e4ba633531e --hash=sha256:bb9fb560aaf62959c81e31fa40885c36bbd5854d5aa21b90df2c7e4ba633531e
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
django-cors-headers==4.6.0 \ django-cors-headers==4.7.0 \
--hash=sha256:14d76b4b4c8d39375baeddd89e4f08899051eeaf177cb02a29bd6eae8cf63aa8 \ --hash=sha256:6fdf31bf9c6d6448ba09ef57157db2268d515d94fc5c89a0a1028e1fc03ee52b \
--hash=sha256:8edbc0497e611c24d5150e0055d3b178c6534b8ed826fb6f53b21c63f5d48ba3 --hash=sha256:f1c125dcd58479fe7a67fe2499c16ee38b81b397463cf025f0e2c42937421070
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
django-dbbackup==4.2.1 \ django-dbbackup==4.2.1 \
--hash=sha256:157a2ec10d482345cd75092e510ac40d6e2ee6084604a1d17abe178c2f06bc69 \ --hash=sha256:157a2ec10d482345cd75092e510ac40d6e2ee6084604a1d17abe178c2f06bc69 \
@ -614,57 +614,57 @@ flexparser==0.4 \
--hash=sha256:266d98905595be2ccc5da964fe0a2c3526fbbffdc45b65b3146d75db992ef6b2 \ --hash=sha256:266d98905595be2ccc5da964fe0a2c3526fbbffdc45b65b3146d75db992ef6b2 \
--hash=sha256:3738b456192dcb3e15620f324c447721023c0293f6af9955b481e91d00179846 --hash=sha256:3738b456192dcb3e15620f324c447721023c0293f6af9955b481e91d00179846
# via pint # via pint
fonttools[woff]==4.55.8 \ fonttools[woff]==4.56.0 \
--hash=sha256:01ea3901b0802fc5f9e854f5aeb5bc27770dd9dd24c28df8f74ba90f8b3f5915 \ --hash=sha256:003548eadd674175510773f73fb2060bb46adb77c94854af3e0cc5bc70260049 \
--hash=sha256:02c41322e5bdcb484b61b776fcea150215c83619b39c96aa0b44d4fd87bb5574 \ --hash=sha256:0073b62c3438cf0058488c002ea90489e8801d3a7af5ce5f7c05c105bee815c3 \
--hash=sha256:03c2b50b54e6e8b3564b232e57e8f58be217cf441cf0155745d9e44a76f9c30f \ --hash=sha256:1088182f68c303b50ca4dc0c82d42083d176cba37af1937e1a976a31149d4d14 \
--hash=sha256:07636dae94f7fe88561f9da7a46b13d8e3f529f87fdb221b11d85f91eabceeb7 \ --hash=sha256:133bedb9a5c6376ad43e6518b7e2cd2f866a05b1998f14842631d5feb36b5786 \
--hash=sha256:0f38bfb6b7a39c4162c3eb0820a0bdf8e3bdd125cd54e10ba242397d15e32439 \ --hash=sha256:14a3e3e6b211660db54ca1ef7006401e4a694e53ffd4553ab9bc87ead01d0f05 \
--hash=sha256:1e10efc8ee10d6f1fe2931d41bccc90cd4b872f2ee4ff21f2231a2c293b2dbf8 \ --hash=sha256:17f39313b649037f6c800209984a11fc256a6137cbe5487091c6c7187cae4685 \
--hash=sha256:2232012a1502b2b8ab4c6bc1d3524bfe90238c0c1a50ac94a0a2085aa87a58a5 \ --hash=sha256:193b86e9f769320bc98ffdb42accafb5d0c8c49bd62884f1c0702bc598b3f0a2 \
--hash=sha256:243cbfc0b7cb1c307af40e321f8343a48d0a080bc1f9466cf2b5468f776ef108 \ --hash=sha256:2d351275f73ebdd81dd5b09a8b8dac7a30f29a279d41e1c1192aedf1b6dced40 \
--hash=sha256:285c1ac10c160fbdff6d05358230e66c4f98cbbf271f3ec7eb34e967771543e8 \ --hash=sha256:300c310bb725b2bdb4f5fc7e148e190bd69f01925c7ab437b9c0ca3e1c7cd9ba \
--hash=sha256:302e1003a760b222f711d5ba6d1ad7fd5f7f713eb872cd6a3eb44390bc9770af \ --hash=sha256:331954d002dbf5e704c7f3756028e21db07097c19722569983ba4d74df014000 \
--hash=sha256:332883b6280b9d90d2ba7e9e81be77cf2ace696161e60cdcf40cfcd2b3ed06fa \ --hash=sha256:38b947de71748bab150259ee05a775e8a0635891568e9fdb3cdd7d0e0004e62f \
--hash=sha256:3461347016c94cb42b36caa907e11565878c4c2c375604f3651d11dc06d1ab3e \ --hash=sha256:3cf4f8d2a30b454ac682e12c61831dcb174950c406011418e739de592bbf8f76 \
--hash=sha256:3d20f152de7625a0008ba1513f126daaaa0de3b4b9030aa72dd5c27294992260 \ --hash=sha256:3fd3fccb7b9adaaecfa79ad51b759f2123e1aba97f857936ce044d4f029abd71 \
--hash=sha256:450c354c04a6e12a3db968e915fe05730f79ff3d39560947ef8ee6eaa2ab2212 \ --hash=sha256:442ad4122468d0e47d83bc59d0e91b474593a8c813839e1872e47c7a0cb53b10 \
--hash=sha256:466a78984f0572305c3c48377f4e3f7f4e909f1209f45ef8e7041d5c8a744a56 \ --hash=sha256:47b5e4680002ae1756d3ae3b6114e20aaee6cc5c69d1e5911f5ffffd3ee46c6b \
--hash=sha256:4dfae7c94987149bdaa0388e6c937566aa398fa0eec973b17952350a069cff4e \ --hash=sha256:53f5e9767978a4daf46f28e09dbeb7d010319924ae622f7b56174b777258e5ba \
--hash=sha256:54d481d456dcd59af25d4a9c56b2c4c3f20e9620b261b84144e5950f33e8df17 \ --hash=sha256:62b4c6802fa28e14dba010e75190e0e6228513573f1eeae57b11aa1a39b7e5b1 \
--hash=sha256:604c805b41241b4880e2dc86cf2d4754c06777371c8299799ac88d836cb18c3b \ --hash=sha256:62cc1253827d1e500fde9dbe981219fea4eb000fd63402283472d38e7d8aa1c6 \
--hash=sha256:63403ee0f2fa4e1de28e539f8c24f2bdca1d8ecb503fa9ea2d231d9f1e729809 \ --hash=sha256:654ac4583e2d7c62aebc6fc6a4c6736f078f50300e18aa105d87ce8925cfac31 \
--hash=sha256:65cb8f97eed7906dcf19bc2736b70c6239e9d7e77aad7c6110ba7239ae082e81 \ --hash=sha256:661a8995d11e6e4914a44ca7d52d1286e2d9b154f685a4d1f69add8418961563 \
--hash=sha256:67df1c3935838fb9e56f227d7f506c9043b149a4a3b667bef17929c7a1114d19 \ --hash=sha256:6c1d38642ca2dddc7ae992ef5d026e5061a84f10ff2b906be5680ab089f55bb8 \
--hash=sha256:6b8d7c149d47b47de7ec81763396c8266e5ebe2e0b14aa9c3ccf29e52260ab2f \ --hash=sha256:6e81c1cc80c1d8bf071356cc3e0e25071fbba1c75afc48d41b26048980b3c771 \
--hash=sha256:708cb17b2590b7f6c6854999df0039ff1140dda9e6f56d67c3599ba6f968fab5 \ --hash=sha256:705837eae384fe21cee5e5746fd4f4b2f06f87544fa60f60740007e0aa600311 \
--hash=sha256:8abd135e427d88e461a4833c03cf96cfb9028c78c15d58123291f22398e25492 \ --hash=sha256:7ef04bc7827adb7532be3d14462390dd71287644516af3f1e67f1e6ff9c6d6df \
--hash=sha256:9164f44add0acec0f12fce682824c040dc52e483bfe3838c37142897150c8364 \ --hash=sha256:86b2a1013ef7a64d2e94606632683f07712045ed86d937c11ef4dde97319c086 \
--hash=sha256:95f5a1d4432b3cea6571f5ce4f4e9b25bf36efbd61c32f4f90130a690925d6ee \ --hash=sha256:8d1613abd5af2f93c05867b3a3759a56e8bf97eb79b1da76b2bc10892f96ff16 \
--hash=sha256:9b5f05ef72e846e9f49ccdd74b9da4309901a4248434c63c1ee9321adcb51d65 \ --hash=sha256:965d0209e6dbdb9416100123b6709cb13f5232e2d52d17ed37f9df0cc31e2b35 \
--hash=sha256:9b6fcff4dc755b32faff955d989ee26394ddad3a90ea7d558db17a4633c8390c \ --hash=sha256:96a4271f63a615bcb902b9f56de00ea225d6896052c49f20d0c91e9f43529a29 \
--hash=sha256:a0fe12f06169af2fdc642d26a8df53e40adc3beedbd6ffedb19f1c5397b63afd \ --hash=sha256:9d94449ad0a5f2a8bf5d2f8d71d65088aee48adbe45f3c5f8e00e3ad861ed81a \
--hash=sha256:a19059aa892676822c1f05cb5a67296ecdfeb267fe7c47d4758f3e8e942c2b2a \ --hash=sha256:9da650cb29bc098b8cfd15ef09009c914b35c7986c8fa9f08b51108b7bc393b4 \
--hash=sha256:a7230f7590f9570d26ee903b6a4540274494e200fae978df0d9325b7b9144529 \ --hash=sha256:a05d1f07eb0a7d755fbe01fee1fd255c3a4d3730130cf1bfefb682d18fd2fcea \
--hash=sha256:acfec948de41cd5e640d5c15d0200e8b8e7c5c6bb82afe1ca095cbc4af1188ee \ --hash=sha256:a114d1567e1a1586b7e9e7fc2ff686ca542a82769a296cef131e4c4af51e58f4 \
--hash=sha256:b99d4fd2b6d0a00c7336c8363fccc7a11eccef4b17393af75ca6e77cf93ff413 \ --hash=sha256:a1af375734018951c31c0737d04a9d5fd0a353a0253db5fbed2ccd44eac62d8c \
--hash=sha256:b9f9fce3c9b2196e162182ec5db8af8eb3acd0d76c2eafe9fdba5f370044e556 \ --hash=sha256:b23d30a2c0b992fb1c4f8ac9bfde44b5586d23457759b6cf9a787f1a35179ee0 \
--hash=sha256:ba45b637da80a262b55b7657aec68da2ac54b8ae7891cd977a5dbe5fd26db429 \ --hash=sha256:bc871904a53a9d4d908673c6faa15689874af1c7c5ac403a8e12d967ebd0c0dc \
--hash=sha256:bf4b5b3496ddfdd4e57112e77ec51f1ab388d35ac17322c1248addb2eb0d429a \ --hash=sha256:bce60f9a977c9d3d51de475af3f3581d9b36952e1f8fc19a1f2254f1dda7ce9c \
--hash=sha256:c96f2506ce1a0beeaa9595f9a8b7446477eb133f40c0e41fc078744c28149f80 \ --hash=sha256:bd9825822e7bb243f285013e653f6741954d8147427aaa0324a862cdbf4cbf62 \
--hash=sha256:cb121d6dd34625cece32234a5fa0359475bb118838b6b4295ffdb13b935edb04 \ --hash=sha256:ca7962e8e5fc047cc4e59389959843aafbf7445b6c08c20d883e60ced46370a5 \
--hash=sha256:ccf8ae02918f431953d338db4d0a675a395faf82bab3a76025582cf32a2f3b7b \ --hash=sha256:d0cb73ccf7f6d7ca8d0bc7ea8ac0a5b84969a41c56ac3ac3422a24df2680546f \
--hash=sha256:cfe9cf30f391a0f2875247a3e5e44d8dcb61596e5cf89b360cdffec8a80e9961 \ --hash=sha256:d54a45d30251f1d729e69e5b675f9a08b7da413391a1227781e2a297fa37f6d2 \
--hash=sha256:d11600f5343092697d7434f3bf77a393c7ae74be206fe30e577b9a195fd53165 \ --hash=sha256:d6ca96d1b61a707ba01a43318c9c40aaf11a5a568d1e61146fafa6ab20890793 \
--hash=sha256:d2248ebfbcea0d0b3cb459d76a9f67f2eadc10ec0d07e9cadab8777d3f016bf2 \ --hash=sha256:d6f195c14c01bd057bc9b4f70756b510e009c83c5ea67b25ced3e2c38e6ee6e9 \
--hash=sha256:d39f0c977639be0f9f5505d4c7c478236737f960c567a35f058649c056e41434 \ --hash=sha256:e2cad98c94833465bcf28f51c248aaf07ca022efc6a3eba750ad9c1e0256d278 \
--hash=sha256:d5a3ff5bb95fd5a3962b2754f8435e6d930c84fc9e9921c51e802dddf40acd56 \ --hash=sha256:e2e993e8db36306cc3f1734edc8ea67906c55f98683d6fd34c3fc5593fdbba4c \
--hash=sha256:d637e4d33e46619c79d1a6c725f74d71b574cd15fb5bbb9b6f3eba8f28363573 \ --hash=sha256:e9270505a19361e81eecdbc2c251ad1e1a9a9c2ad75fa022ccdee533f55535dc \
--hash=sha256:de78d6d0dbe32561ce059265437021f4746e56073c4799f0f1095828ae7232bd \ --hash=sha256:f20e2c0dfab82983a90f3d00703ac0960412036153e5023eed2b4641d7d5e692 \
--hash=sha256:e72a7816ff8a759be9ca36ca46934f8ccf4383711ef597d9240306fe1878cb8d \ --hash=sha256:f36a0868f47b7566237640c026c65a86d09a3d9ca5df1cd039e30a1da73098a0 \
--hash=sha256:edcffaeadba9a334c1c3866e275d7dd495465e7dbd296f688901bdbd71758113 \ --hash=sha256:f59746f7953f69cc3290ce2f971ab01056e55ddd0fb8b792c31a8acd7fee2d28 \
--hash=sha256:f089e8da0990cfe2d67e81d9cf581ff372b48dc5acf2782701844211cd1f0eb3 \ --hash=sha256:fa760e5fe8b50cbc2d71884a1eff2ed2b95a005f02dda2fa431560db0ddd927f \
--hash=sha256:f971aa5f50c22dc4b63a891503624ae2c77330429b34ead32f23c2260c5618cd --hash=sha256:ffda9b8cd9cb8b301cae2602ec62375b59e2e2108a117746f12215145e3f786c
# via weasyprint # via weasyprint
googleapis-common-protos==1.66.0 \ googleapis-common-protos==1.66.0 \
--hash=sha256:c3e7b33d15fdca5374cc0a7346dd92ffa847425cc4ea941d970f13680052ec8c \ --hash=sha256:c3e7b33d15fdca5374cc0a7346dd92ffa847425cc4ea941d970f13680052ec8c \
@ -991,9 +991,9 @@ openpyxl==3.1.5 \
--hash=sha256:5282c12b107bffeef825f4617dc029afaf41d0ea60823bbb665ef3079dc79de2 \ --hash=sha256:5282c12b107bffeef825f4617dc029afaf41d0ea60823bbb665ef3079dc79de2 \
--hash=sha256:cf0e3cf56142039133628b5acffe8ef0c12bc902d2aadd3e0fe5878dc08d1050 --hash=sha256:cf0e3cf56142039133628b5acffe8ef0c12bc902d2aadd3e0fe5878dc08d1050
# via tablib # via tablib
opentelemetry-api==1.29.0 \ opentelemetry-api==1.30.0 \
--hash=sha256:5fcd94c4141cc49c736271f3e1efb777bebe9cc535759c54c936cca4f1b312b8 \ --hash=sha256:375893400c1435bf623f7dfb3bcd44825fe6b56c34d0667c542ea8257b1a1240 \
--hash=sha256:d04a6cf78aad09614f52964ecb38021e248f5714dc32c2e0d8fd99517b4d69cf --hash=sha256:d5f5284890d73fdf47f843dda3210edf37a38d66f44f2b5aedc1e89ed455dc09
# via # via
# -r src/backend/requirements.in # -r src/backend/requirements.in
# opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-grpc
@ -1005,65 +1005,65 @@ opentelemetry-api==1.29.0 \
# opentelemetry-instrumentation-wsgi # opentelemetry-instrumentation-wsgi
# opentelemetry-sdk # opentelemetry-sdk
# opentelemetry-semantic-conventions # opentelemetry-semantic-conventions
opentelemetry-exporter-otlp==1.29.0 \ opentelemetry-exporter-otlp==1.30.0 \
--hash=sha256:b8da6e20f5b0ffe604154b1e16a407eade17ce310c42fb85bb4e1246fc3688ad \ --hash=sha256:44e11054ec571ccfed73a83c6429dee5d334d061d0e0572e3160d6de97156dbc \
--hash=sha256:ee7dfcccbb5e87ad9b389908452e10b7beeab55f70a83f41ce5b8c4efbde6544 --hash=sha256:da7769f95cd5be5b09dd4188ac153a33709eda652217f2d10aed6518c8e60f0d
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
opentelemetry-exporter-otlp-proto-common==1.29.0 \ opentelemetry-exporter-otlp-proto-common==1.30.0 \
--hash=sha256:a9d7376c06b4da9cf350677bcddb9618ed4b8255c3f6476975f5e38274ecd3aa \ --hash=sha256:5468007c81aa9c44dc961ab2cf368a29d3475977df83b4e30aeed42aa7bc3b38 \
--hash=sha256:e7c39b5dbd1b78fe199e40ddfe477e6983cb61aa74ba836df09c3869a3e3e163 --hash=sha256:ddbfbf797e518411857d0ca062c957080279320d6235a279f7b64ced73c13897
# via # via
# opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http # opentelemetry-exporter-otlp-proto-http
opentelemetry-exporter-otlp-proto-grpc==1.29.0 \ opentelemetry-exporter-otlp-proto-grpc==1.30.0 \
--hash=sha256:3d324d07d64574d72ed178698de3d717f62a059a93b6b7685ee3e303384e73ea \ --hash=sha256:2906bcae3d80acc54fd1ffcb9e44d324e8631058b502ebe4643ca71d1ff30830 \
--hash=sha256:5a2a3a741a2543ed162676cf3eefc2b4150e6f4f0a193187afb0d0e65039c69c --hash=sha256:d0f10f0b9b9a383b7d04a144d01cb280e70362cccc613987e234183fd1f01177
# via opentelemetry-exporter-otlp # via opentelemetry-exporter-otlp
opentelemetry-exporter-otlp-proto-http==1.29.0 \ opentelemetry-exporter-otlp-proto-http==1.30.0 \
--hash=sha256:b10d174e3189716f49d386d66361fbcf6f2b9ad81e05404acdee3f65c8214204 \ --hash=sha256:9578e790e579931c5ffd50f1e6975cbdefb6a0a0a5dea127a6ae87df10e0a589 \
--hash=sha256:b228bdc0f0cfab82eeea834a7f0ffdd2a258b26aa33d89fb426c29e8e934d9d0 --hash=sha256:c3ae75d4181b1e34a60662a6814d0b94dd33b628bee5588a878bed92cee6abdc
# via opentelemetry-exporter-otlp # via opentelemetry-exporter-otlp
opentelemetry-instrumentation==0.50b0 \ opentelemetry-instrumentation==0.51b0 \
--hash=sha256:7d98af72de8dec5323e5202e46122e5f908592b22c6d24733aad619f07d82979 \ --hash=sha256:4ca266875e02f3988536982467f7ef8c32a38b8895490ddce9ad9604649424fa \
--hash=sha256:b8f9fc8812de36e1c6dffa5bfc6224df258841fb387b6dfe5df15099daa10630 --hash=sha256:c6de8bd26b75ec8b0e54dff59e198946e29de6a10ec65488c357d4b34aa5bdcf
# via # via
# opentelemetry-instrumentation-django # opentelemetry-instrumentation-django
# opentelemetry-instrumentation-redis # opentelemetry-instrumentation-redis
# opentelemetry-instrumentation-requests # opentelemetry-instrumentation-requests
# opentelemetry-instrumentation-wsgi # opentelemetry-instrumentation-wsgi
opentelemetry-instrumentation-django==0.50b0 \ opentelemetry-instrumentation-django==0.51b0 \
--hash=sha256:624fd0beb1ac827f2af31709c2da5cb55d8dc899c2449d6e8fcc9fa5538fd56b \ --hash=sha256:574ff4a22be72c8371fdbaea19dca3d667e6ebd1b2756e5be1f17761dd668d9c \
--hash=sha256:ab7b4cd52b8f12420d968823f6bbfbc2a6ddb2af7a05fcb0d5b6755d338f1915 --hash=sha256:cc548785e6f5e0965497f7d611c9204a214d5f2fc3ceba26aea3b699f5f99d4c
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
opentelemetry-instrumentation-redis==0.50b0 \ opentelemetry-instrumentation-redis==0.51b0 \
--hash=sha256:48c115189781a4eb1513457f4cb03f7c28bac45d4ca619802d0fec5d08db9e0f \ --hash=sha256:0e0bf2d641dca35d5d35b6d6c34a6133ccb0961b54527dd9ce21a6463d7bd173 \
--hash=sha256:ab5c983acdd2d4dd897b8d0f7c28d4fd548458259895830e43d9a206f4afa391 --hash=sha256:a390df3fb73a0efc9410b85d3099c2d8faf1f85e83724c4f8bd54c65001cfc5c
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
opentelemetry-instrumentation-requests==0.50b0 \ opentelemetry-instrumentation-requests==0.51b0 \
--hash=sha256:2c60a890988d6765de9230004d0af9071b3b2e1ddba4ca3b631cfb8a1722208d \ --hash=sha256:0723aaafaeb2a825723f31c0bf644f9642377046063d1a52fc86571ced87feac \
--hash=sha256:f8088c76f757985b492aad33331d21aec2f99c197472a57091c2e986a4b7ec8b --hash=sha256:e7f4bd3ffcab6ebcce8a1c652af218e050354c8e7cac2c34814292d4de75167a
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
opentelemetry-instrumentation-wsgi==0.50b0 \ opentelemetry-instrumentation-wsgi==0.51b0 \
--hash=sha256:4bc0fdf52b603507d6170a25504f0ceea358d7e90a2c0e8794b7b7eca5ea355c \ --hash=sha256:a759b020a41c5ddddbb3c71149aa60f2dd06c423ec507c8dfecec89e0570d5bc \
--hash=sha256:c25b5f1b664d984a41546a34cf2f893dcde6cf56922f88c475864e7df37edf4a --hash=sha256:bd0403cf00b39b0e4b2acf9aa08ccd6799e2d3b45b950bfaabfb10aed301727f
# via opentelemetry-instrumentation-django # via opentelemetry-instrumentation-django
opentelemetry-proto==1.29.0 \ opentelemetry-proto==1.30.0 \
--hash=sha256:3c136aa293782e9b44978c738fff72877a4b78b5d21a64e879898db7b2d93e5d \ --hash=sha256:afe5c9c15e8b68d7c469596e5b32e8fc085eb9febdd6fb4e20924a93a0389179 \
--hash=sha256:495069c6f5495cbf732501cdcd3b7f60fda2b9d3d4255706ca99b7ca8dec53ff --hash=sha256:c6290958ff3ddacc826ca5abbeb377a31c2334387352a259ba0df37c243adc11
# via # via
# opentelemetry-exporter-otlp-proto-common # opentelemetry-exporter-otlp-proto-common
# opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http # opentelemetry-exporter-otlp-proto-http
opentelemetry-sdk==1.29.0 \ opentelemetry-sdk==1.30.0 \
--hash=sha256:173be3b5d3f8f7d671f20ea37056710217959e774e2749d984355d1f9391a30a \ --hash=sha256:14fe7afc090caad881addb6926cec967129bd9260c4d33ae6a217359f6b61091 \
--hash=sha256:b0787ce6aade6ab84315302e72bd7a7f2f014b0fb1b7c3295b88afe014ed0643 --hash=sha256:c9287a9e4a7614b9946e933a67168450b9ab35f08797eb9bc77d998fa480fa18
# via # via
# -r src/backend/requirements.in # -r src/backend/requirements.in
# opentelemetry-exporter-otlp-proto-grpc # opentelemetry-exporter-otlp-proto-grpc
# opentelemetry-exporter-otlp-proto-http # opentelemetry-exporter-otlp-proto-http
opentelemetry-semantic-conventions==0.50b0 \ opentelemetry-semantic-conventions==0.51b0 \
--hash=sha256:02dc6dbcb62f082de9b877ff19a3f1ffaa3c306300fa53bfac761c4567c83d38 \ --hash=sha256:3fabf47f35d1fd9aebcdca7e6802d86bd5ebc3bc3408b7e3248dde6e87a18c47 \
--hash=sha256:e87efba8fdb67fb38113efea6a349531e75ed7ffc01562f65b802fcecb5e115e --hash=sha256:fdc777359418e8d06c86012c3dc92c88a6453ba662e941593adb062e48c2eeae
# via # via
# opentelemetry-instrumentation # opentelemetry-instrumentation
# opentelemetry-instrumentation-django # opentelemetry-instrumentation-django
@ -1071,9 +1071,9 @@ opentelemetry-semantic-conventions==0.50b0 \
# opentelemetry-instrumentation-requests # opentelemetry-instrumentation-requests
# opentelemetry-instrumentation-wsgi # opentelemetry-instrumentation-wsgi
# opentelemetry-sdk # opentelemetry-sdk
opentelemetry-util-http==0.50b0 \ opentelemetry-util-http==0.51b0 \
--hash=sha256:21f8aedac861ffa3b850f8c0a6c373026189eb8630ac6e14a2bf8c55695cc090 \ --hash=sha256:0561d7a6e9c422b9ef9ae6e77eafcfcd32a2ab689f5e801475cbb67f189efa20 \
--hash=sha256:dc4606027e1bc02aabb9533cc330dd43f874fca492e4175c31d7154f341754af --hash=sha256:05edd19ca1cc3be3968b1e502fd94816901a365adbeaab6b6ddb974384d3a0b9
# via # via
# opentelemetry-instrumentation-django # opentelemetry-instrumentation-django
# opentelemetry-instrumentation-requests # opentelemetry-instrumentation-requests
@ -1238,9 +1238,9 @@ python-dotenv==1.0.1 \
--hash=sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca \ --hash=sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca \
--hash=sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a --hash=sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
python-fsutil==0.14.1 \ python-fsutil==0.15.0 \
--hash=sha256:0d45e623f0f4403f674bdd8ae7aa7d24a4b3132ea45c65416bd2865e6b20b035 \ --hash=sha256:8ae31def522916e35caf67723b8526fe6e5fcc1e160ea2dc23c845567708ca6e \
--hash=sha256:8fb204fa8059f37bdeee8a1dc0fff010170202ea47c4225ee71bb3c26f3997be --hash=sha256:b51d8ab7ee218314480ea251fff7fef513be4fbccfe72a5af4ff2954f8a4a2c4
# via django-maintenance-mode # via django-maintenance-mode
python-ipware==3.0.0 \ python-ipware==3.0.0 \
--hash=sha256:9117b1c4dddcb5d5ca49e6a9617de2fc66aec2ef35394563ac4eecabdf58c062 \ --hash=sha256:9117b1c4dddcb5d5ca49e6a9617de2fc66aec2ef35394563ac4eecabdf58c062 \
@ -1662,9 +1662,9 @@ webencodings==0.5.1 \
# cssselect2 # cssselect2
# html5lib # html5lib
# tinycss2 # tinycss2
whitenoise==6.8.2 \ whitenoise==6.9.0 \
--hash=sha256:486bd7267a375fa9650b136daaec156ac572971acc8bf99add90817a530dd1d4 \ --hash=sha256:8c4a7c9d384694990c26f3047e118c691557481d624f069b7f7752a2f735d609 \
--hash=sha256:df12dce147a043d1956d81d288c6f0044147c6d2ab9726e5772ac50fb45d2280 --hash=sha256:c8a489049b7ee9889617bb4c274a153f3d979e8f51d2efd0f5b403caf41c57df
# via -r src/backend/requirements.in # via -r src/backend/requirements.in
wrapt==1.17.2 \ wrapt==1.17.2 \
--hash=sha256:08e7ce672e35efa54c5024936e559469436f8b8096253404faeb54d2a878416f \ --hash=sha256:08e7ce672e35efa54c5024936e559469436f8b8096253404faeb54d2a878416f \

View File

@ -1,8 +1,9 @@
import { Group, Paper, SimpleGrid, Stack, Text } from '@mantine/core'; import { Group, Paper, SimpleGrid, Stack, Text } from '@mantine/core';
import { useHotkeys } from '@mantine/hooks'; import { useHotkeys } from '@mantine/hooks';
import { Fragment, type ReactNode, useMemo } from 'react';
import { Fragment, type ReactNode, useMemo } from 'react';
import { shortenString } from '../../functions/tables'; import { shortenString } from '../../functions/tables';
import { useUserSettingsState } from '../../states/SettingsState';
import { ApiImage } from '../images/ApiImage'; import { ApiImage } from '../images/ApiImage';
import { StylishText } from '../items/StylishText'; import { StylishText } from '../items/StylishText';
import { type Breadcrumb, BreadcrumbList } from './BreadcrumbList'; import { type Breadcrumb, BreadcrumbList } from './BreadcrumbList';
@ -16,6 +17,7 @@ interface PageDetailInterface {
detail?: ReactNode; detail?: ReactNode;
badges?: ReactNode[]; badges?: ReactNode[];
breadcrumbs?: Breadcrumb[]; breadcrumbs?: Breadcrumb[];
lastCrumb?: Breadcrumb[];
breadcrumbAction?: () => void; breadcrumbAction?: () => void;
actions?: ReactNode[]; actions?: ReactNode[];
editAction?: () => void; editAction?: () => void;
@ -36,11 +38,13 @@ export function PageDetail({
badges, badges,
imageUrl, imageUrl,
breadcrumbs, breadcrumbs,
lastCrumb: last_crumb,
breadcrumbAction, breadcrumbAction,
actions, actions,
editAction, editAction,
editEnabled editEnabled
}: Readonly<PageDetailInterface>) { }: Readonly<PageDetailInterface>) {
const userSettings = useUserSettingsState();
useHotkeys([ useHotkeys([
[ [
'mod+E', 'mod+E',
@ -84,14 +88,23 @@ export function PageDetail({
return cols; return cols;
}, [detail, badges]); }, [detail, badges]);
// breadcrumb caching
const computedBreadcrumbs = useMemo(() => {
if (userSettings.isSet('ENABLE_LAST_BREADCRUMB', false)) {
return [...(breadcrumbs ?? []), ...(last_crumb ?? [])];
} else {
return breadcrumbs;
}
}, [breadcrumbs, last_crumb, userSettings]);
return ( return (
<> <>
<PageTitle title={pageTitleString} /> <PageTitle title={pageTitleString} />
<Stack gap='xs'> <Stack gap='xs'>
{breadcrumbs && breadcrumbs.length > 0 && ( {computedBreadcrumbs && computedBreadcrumbs.length > 0 && (
<BreadcrumbList <BreadcrumbList
navCallback={breadcrumbAction} navCallback={breadcrumbAction}
breadcrumbs={breadcrumbs} breadcrumbs={computedBreadcrumbs}
/> />
)} )}
<Paper p='xs' radius='xs' shadow='xs'> <Paper p='xs' radius='xs' shadow='xs'>

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ar\n" "Language: ar\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: bg\n" "Language: bg\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Bulgarian\n" "Language-Team: Bulgarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: cs\n" "Language: cs\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Verze" msgstr "Verze"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Verze rozhraní API" msgstr "Verze rozhraní API"
@ -1144,10 +1144,6 @@ msgstr "Verze rozhraní API"
msgid "Plugins" msgid "Plugins"
msgstr "Pluginy" msgstr "Pluginy"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Hledat" msgstr "Hledat"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Načítání" msgstr "Načítání"
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Tyto informace jsou dostupné pouze pro uživatele" msgstr "Tyto informace jsou dostupné pouze pro uživatele"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Tento panel je zástupným znakem." msgstr "Tento panel je zástupným znakem."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informace o verzi" msgstr "Verze InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Vývojové verze"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Aktuální"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Dostupné aktualizace"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Verze InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash revize"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Datum revize"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Větev revize"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python verze" msgstr "Python verze"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django verze" msgstr "Django verze"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash revize"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Datum revize"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Větev revize"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informace o verzi"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Odkazy" msgstr "Odkazy"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentace" msgstr "Dokumentace"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Poděkování" msgstr "Poděkování"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobilní aplikace"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Odeslat hlášení o chybě"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobilní aplikace"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Odeslat hlášení o chybě"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopírovat informace o verzi" msgstr "Kopírovat informace o verzi"
@ -1612,6 +1600,18 @@ msgstr "Kopírovat informace o verzi"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Vývojové verze"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Aktuální"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Dostupné aktualizace"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Není k dispozici žádná licence" msgstr "Není k dispozici žádná licence"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Nastavení" msgstr "Nastavení"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Nastavení systému" msgstr "Nastavení systému"
@ -1813,7 +1813,7 @@ msgstr "Zásoby"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Prodej"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notifikace"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Nemáš žádné nové notifikace."
msgid "results" msgid "results"
msgstr "výsledky" msgstr "výsledky"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Zadejte hledaný text" msgstr "Zadejte hledaný text"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Možnosti hledání" msgstr "Možnosti hledání"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Skladová položka" msgstr "Skladová položka"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Firma" msgstr "Firma"
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adresa" msgstr "Adresa"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresy" msgstr "Adresy"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakty" msgstr "Kontakty"
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Sériové číslo"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Štítky" msgstr "Štítky"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Webová stránka" msgstr "Webová stránka"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Upravit společnost" msgstr "Upravit společnost"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: da\n" "Language: da\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: de\n" "Language: de\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: German\n" "Language-Team: German\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Version" msgstr "Version"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API-Version" msgstr "API-Version"
@ -1144,10 +1144,6 @@ msgstr "API-Version"
msgid "Plugins" msgid "Plugins"
msgstr "Plugins" msgstr "Plugins"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Aktiviert" msgstr "Aktiviert"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} Symbole" msgstr "{0} Symbole"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Wird geladen" msgstr "Wird geladen"
@ -1374,7 +1374,7 @@ msgstr "Daten wurden erfolgreich importiert"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Diese Informationen sind nur für Mitarbeiter verfügbar" msgstr "Diese Informationen sind nur für Mitarbeiter verfügbar"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Dieses Panel ist ein Platzhalter." msgstr "Dieses Panel ist ein Platzhalter."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Versionsinformationen" msgstr "InvenTree-Version"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Entwicklungsversion"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Aktuell"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Aktualisierung verfügbar"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree-Version"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commit-Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Commit-Datum"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit-Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python-Version" msgstr "Python-Version"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django-Version" msgstr "Django-Version"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commit-Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Commit-Datum"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit-Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Versionsinformationen"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Links" msgstr "Links"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentation" msgstr "Dokumentation"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Mitwirkende" msgstr "Mitwirkende"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobile App"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Fehlerbericht senden"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobile App"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Fehlerbericht senden"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Versionsinformationen kopieren" msgstr "Versionsinformationen kopieren"
@ -1612,6 +1600,18 @@ msgstr "Versionsinformationen kopieren"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Entwicklungsversion"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Aktuell"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Aktualisierung verfügbar"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Kein Lizenztext verfügbar" msgstr "Kein Lizenztext verfügbar"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Kontoeinstellungen" msgstr "Kontoeinstellungen"
@ -1745,8 +1745,8 @@ msgstr "Kontoeinstellungen"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
@ -1813,7 +1813,7 @@ msgstr "Lager"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Verkäufe"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Benachrichtigungen"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Du hast keine ungelesenen Benachrichtigungen. "
msgid "results" msgid "results"
msgstr "Ergebnisse" msgstr "Ergebnisse"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Suchtext eingeben" msgstr "Suchtext eingeben"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Suchoptionen" msgstr "Suchoptionen"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex Suche" msgstr "Regex Suche"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Volltextsuche" msgstr "Volltextsuche"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Bei der Suchanfrage ist ein Fehler aufgetreten"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Bei der Suchanfrage ist ein Fehler aufgetreten"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Keine Ergebnisse" msgstr "Keine Ergebnisse"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Keine Ergebnisse für Suchanfrage verfügbar" msgstr "Keine Ergebnisse für Suchanfrage verfügbar"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Unbekanntes Modell: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Lagerartikel" msgstr "Lagerartikel"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Firma" msgstr "Firma"
@ -2309,7 +2309,7 @@ msgstr "Einkaufsbestellung"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Verkaufsauftrag" msgstr "Verkaufsauftrag"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Rückgabe Auftrag" msgstr "Rückgabe Auftrag"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adresse" msgstr "Adresse"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adressen" msgstr "Adressen"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakte" msgstr "Kontakte"
@ -2512,7 +2512,7 @@ msgstr "Sendung"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Seriennummer"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Verpackung" msgstr "Verpackung"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Erhalten" msgstr "Erhalten"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Prüfe ob Sie bereits angemeldet sind" msgstr "Prüfe ob Sie bereits angemeldet sind"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Beschriftungen" msgstr "Beschriftungen"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Berichte" msgstr "Berichte"
@ -5520,23 +5520,23 @@ msgstr "Bauauftrag"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Webseite" msgstr "Webseite"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefonnummer" msgstr "Telefonnummer"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-Mail-Adresse" msgstr "E-Mail-Adresse"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Standardwährung" msgstr "Standardwährung"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Standardwährung"
msgid "Supplier" msgid "Supplier"
msgstr "Lieferant" msgstr "Lieferant"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Lieferant"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Hersteller" msgstr "Hersteller"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Hersteller"
msgid "Customer" msgid "Customer"
msgstr "Kunde" msgstr "Kunde"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Hergestellte Teile" msgstr "Hergestellte Teile"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Zuliefererteile"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Zuliefererteile"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Zugeordneter Bestand" msgstr "Zugeordneter Bestand"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Unternehmen bearbeiten" msgstr "Unternehmen bearbeiten"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Firma löschen" msgstr "Firma löschen"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Firmen-Aktionen" msgstr "Firmen-Aktionen"
@ -5682,8 +5682,8 @@ msgstr "Teilebeschreibung"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Verpackungsmenge" msgstr "Verpackungsmenge"
@ -6111,7 +6111,7 @@ msgstr "Bestand bestellen"
msgid "Part Actions" msgid "Part Actions"
msgstr "Teile-Aktionen" msgstr "Teile-Aktionen"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr "Hersteller"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Höchster Preis"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Abgeschlossene Positionen" msgstr "Abgeschlossene Positionen"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Bestimmungsort" msgstr "Bestimmungsort"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Position hinzufügen" msgstr "Position hinzufügen"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Position bearbeiten" msgstr "Position bearbeiten"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Parametervorlage löschen"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Gesamtmenge" msgstr "Gesamtmenge"
@ -8908,28 +8909,28 @@ msgstr "Parameter löschen"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Lieferantennummer" msgstr "Lieferantennummer"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Lieferanten-Link" msgstr "Lieferanten-Link"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Herstellernummer" msgstr "Herstellernummer"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Position empfangen" msgstr "Position empfangen"
@ -8939,7 +8940,7 @@ msgstr "Position empfangen"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Erhaltene Artikel" msgstr "Erhaltene Artikel"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: el\n" "Language: el\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -87,7 +87,7 @@ msgstr "Scan or enter barcode data"
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1127,7 +1127,7 @@ msgid "Version"
msgstr "Version" msgstr "Version"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API Version" msgstr "API Version"
@ -1139,10 +1139,6 @@ msgstr "API Version"
msgid "Plugins" msgid "Plugins"
msgstr "Plugins" msgstr "Plugins"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr "Disabled"
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1151,6 +1147,10 @@ msgstr "Disabled"
msgid "Enabled" msgid "Enabled"
msgstr "Enabled" msgstr "Enabled"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr "Disabled"
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "Worker" msgstr "Worker"
@ -1191,13 +1191,13 @@ msgid "{0} icons"
msgstr "{0} icons" msgstr "{0} icons"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Search" msgstr "Search"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Loading" msgstr "Loading"
@ -1369,7 +1369,7 @@ msgstr "Data has been imported successfully"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Close" msgstr "Close"
@ -1504,7 +1504,7 @@ msgid "Select language"
msgstr "Select language" msgstr "Select language"
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "This information is only available for staff users" msgstr "This information is only available for staff users"
@ -1520,85 +1520,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "This panel is a placeholder." msgstr "This panel is a placeholder."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Version Information" msgstr "InvenTree Version"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Development Version"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Up to Date"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Update Available"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Version"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commit Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Commit Date"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python Version" msgstr "Python Version"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django Version" msgstr "Django Version"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commit Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Commit Date"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Version Information"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Links" msgstr "Links"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentation" msgstr "Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Source Code" msgstr "Source Code"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Credits" msgstr "Credits"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobile App"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Submit Bug Report"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobile App"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Submit Bug Report"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copy version information" msgstr "Copy version information"
@ -1607,6 +1595,18 @@ msgstr "Copy version information"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Development Version"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Up to Date"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Update Available"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "No license text available" msgstr "No license text available"
@ -1728,7 +1728,7 @@ msgid "Settings"
msgstr "Settings" msgstr "Settings"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Account Settings" msgstr "Account Settings"
@ -1740,8 +1740,8 @@ msgstr "Account Settings"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "System Settings" msgstr "System Settings"
@ -1808,7 +1808,7 @@ msgstr "Stock"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Manufacturing" msgstr "Manufacturing"
@ -1837,7 +1837,7 @@ msgstr "Sales"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1845,7 +1845,7 @@ msgstr "Notifications"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "User Settings" msgstr "User Settings"
@ -1890,41 +1890,41 @@ msgstr "You have no unread notifications."
msgid "results" msgid "results"
msgstr "results" msgstr "results"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Enter search text" msgstr "Enter search text"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Refresh search results" msgstr "Refresh search results"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Search Options" msgstr "Search Options"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex search" msgstr "Regex search"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Whole word search" msgstr "Whole word search"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "An error occurred during search query"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "An error occurred during search query"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "No Results" msgstr "No Results"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "No results available for search query" msgstr "No results available for search query"
@ -1962,7 +1962,7 @@ msgstr "Plugin Information"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2133,7 +2133,7 @@ msgstr "Unknown model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2205,7 +2205,7 @@ msgid "Stock Item"
msgstr "Stock Item" msgstr "Stock Item"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2267,7 +2267,7 @@ msgid "Build Items"
msgstr "Build Items" msgstr "Build Items"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Company" msgstr "Company"
@ -2304,7 +2304,7 @@ msgstr "Purchase Order"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2333,8 +2333,8 @@ msgid "Sales Order"
msgstr "Sales Order" msgstr "Sales Order"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2356,8 +2356,8 @@ msgid "Return Order"
msgstr "Return Order" msgstr "Return Order"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2377,7 +2377,7 @@ msgid "Address"
msgstr "Address" msgstr "Address"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Addresses" msgstr "Addresses"
@ -2389,7 +2389,7 @@ msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contacts" msgstr "Contacts"
@ -2507,7 +2507,7 @@ msgstr "Shipment"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2547,8 +2547,8 @@ msgstr "Serial Number"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3773,7 +3773,7 @@ msgstr "Enter an expiry date for received items"
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Packaging" msgstr "Packaging"
@ -3795,8 +3795,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Received" msgstr "Received"
@ -4195,7 +4195,7 @@ msgstr "Confirm your new password"
msgid "Confirm" msgid "Confirm"
msgstr "Confirm" msgstr "Confirm"
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Checking if you are already logged in" msgstr "Checking if you are already logged in"
@ -5125,7 +5125,7 @@ msgid "Labels"
msgstr "Labels" msgstr "Labels"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Reporting" msgstr "Reporting"
@ -5515,23 +5515,23 @@ msgstr "Build Order"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Website" msgstr "Website"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Phone Number" msgstr "Phone Number"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Email Address" msgstr "Email Address"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Default Currency" msgstr "Default Currency"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5544,7 +5544,7 @@ msgstr "Default Currency"
msgid "Supplier" msgid "Supplier"
msgstr "Supplier" msgstr "Supplier"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5553,7 +5553,7 @@ msgstr "Supplier"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Manufacturer" msgstr "Manufacturer"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5567,7 +5567,7 @@ msgstr "Manufacturer"
msgid "Customer" msgid "Customer"
msgstr "Customer" msgstr "Customer"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Company Details" msgstr "Company Details"
@ -5575,32 +5575,32 @@ msgstr "Company Details"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Manufactured Parts" msgstr "Manufactured Parts"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Supplied Parts"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Supplied Parts"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Assigned Stock" msgstr "Assigned Stock"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Edit Company" msgstr "Edit Company"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Delete Company" msgstr "Delete Company"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Company Actions" msgstr "Company Actions"
@ -5677,8 +5677,8 @@ msgstr "Part Description"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Pack Quantity" msgstr "Pack Quantity"
@ -6106,7 +6106,7 @@ msgstr "Order Stock"
msgid "Part Actions" msgid "Part Actions"
msgstr "Part Actions" msgstr "Part Actions"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Select Part Revision" msgstr "Select Part Revision"
@ -6247,6 +6247,7 @@ msgstr "Manufacturers"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6290,7 +6291,7 @@ msgstr "Maximum Price"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6463,7 +6464,7 @@ msgid "Completed Line Items"
msgstr "Completed Line Items" msgstr "Completed Line Items"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Destination" msgstr "Destination"
@ -7988,8 +7989,8 @@ msgid "View Item"
msgstr "View Item" msgstr "View Item"
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -7998,14 +7999,14 @@ msgid "Add Line Item"
msgstr "Add Line Item" msgstr "Add Line Item"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Edit Line Item" msgstr "Edit Line Item"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8355,7 +8356,7 @@ msgstr "Delete Parameter Template"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Total Quantity" msgstr "Total Quantity"
@ -8903,28 +8904,28 @@ msgstr "Delete Parameter"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "Import Line Items" msgstr "Import Line Items"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Supplier Code" msgstr "Supplier Code"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Supplier Link" msgstr "Supplier Link"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Manufacturer Code" msgstr "Manufacturer Code"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "Show line items which have been received" msgstr "Show line items which have been received"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Receive line item" msgstr "Receive line item"
@ -8934,7 +8935,7 @@ msgstr "Receive line item"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Receive items" msgstr "Receive items"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es\n" "Language: es\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versión" msgstr "Versión"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versión API" msgstr "Versión API"
@ -1144,10 +1144,6 @@ msgstr "Versión API"
msgid "Plugins" msgid "Plugins"
msgstr "Complementos" msgstr "Complementos"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "Iconos {0}" msgstr "Iconos {0}"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Cargando" msgstr "Cargando"
@ -1374,7 +1374,7 @@ msgstr "Los datos se han importado satisfactoriamente"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Cerrar" msgstr "Cerrar"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Esta información sólo está disponible para usuarios del personal" msgstr "Esta información sólo está disponible para usuarios del personal"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Este panel es un marcador de posición." msgstr "Este panel es un marcador de posición."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Información de la versión" msgstr "Versión de InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Versión de Desarrollo"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Actualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Actualización Disponible"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versión de InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Cometer cadena"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Fecha de confirmación"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Consolidar rama"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versión de Python" msgstr "Versión de Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versión de Django" msgstr "Versión de Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Cometer cadena"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Fecha de confirmación"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Consolidar rama"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Información de la versión"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Enlaces" msgstr "Enlaces"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentación" msgstr "Documentación"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Código Fuente" msgstr "Código Fuente"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Créditos" msgstr "Créditos"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplicación Móvil"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Enviar Informe de Error"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplicación Móvil"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Enviar Informe de Error"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copiar información de versión" msgstr "Copiar información de versión"
@ -1612,6 +1600,18 @@ msgstr "Copiar información de versión"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Versión de Desarrollo"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Actualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Actualización Disponible"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Texto de licencia no disponible" msgstr "Texto de licencia no disponible"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Ajustes" msgstr "Ajustes"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Ajustes de la cuenta" msgstr "Ajustes de la cuenta"
@ -1745,8 +1745,8 @@ msgstr "Ajustes de la cuenta"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Ajustes del sistema" msgstr "Ajustes del sistema"
@ -1813,7 +1813,7 @@ msgstr "Stock"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Fabricación" msgstr "Fabricación"
@ -1842,7 +1842,7 @@ msgstr "Ventas"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notificaciones"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Ajustes del usuario" msgstr "Ajustes del usuario"
@ -1895,41 +1895,41 @@ msgstr "No tienes notificaciones sin leer."
msgid "results" msgid "results"
msgstr "resultados" msgstr "resultados"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Introduce texto a buscar" msgstr "Introduce texto a buscar"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Actualizar resultados de búsqueda" msgstr "Actualizar resultados de búsqueda"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opciones de búsqueda" msgstr "Opciones de búsqueda"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Búsqueda por expresión regular" msgstr "Búsqueda por expresión regular"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Búsqueda por palabra" msgstr "Búsqueda por palabra"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Se ha producido un error durante la consulta de búsqueda"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Se ha producido un error durante la consulta de búsqueda"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Sin resultados" msgstr "Sin resultados"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "No hay resultados disponibles para consulta de búsqueda" msgstr "No hay resultados disponibles para consulta de búsqueda"
@ -1967,7 +1967,7 @@ msgstr "Información del complemento"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Modelo desconocido: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Artículo de stock" msgstr "Artículo de stock"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Construir elementos" msgstr "Construir elementos"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Empresa" msgstr "Empresa"
@ -2309,7 +2309,7 @@ msgstr "Pedido de compra"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Orden de venta" msgstr "Orden de venta"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Orden de devolución" msgstr "Orden de devolución"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Dirección" msgstr "Dirección"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Direcciones" msgstr "Direcciones"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contacto" msgstr "Contacto"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contactos" msgstr "Contactos"
@ -2512,7 +2512,7 @@ msgstr "Envío"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Número de serie"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Empaquetado" msgstr "Empaquetado"
@ -3800,8 +3800,8 @@ msgstr "Número De Referencia"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Recibido" msgstr "Recibido"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Comprobando si ya ha iniciado sesión" msgstr "Comprobando si ya ha iniciado sesión"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiquetas" msgstr "Etiquetas"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Informes" msgstr "Informes"
@ -5520,23 +5520,23 @@ msgstr "Orden de construcción"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Sitio Web" msgstr "Sitio Web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de teléfono" msgstr "Número de teléfono"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Dirección de correo electrónico" msgstr "Dirección de correo electrónico"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Divisa predeterminada" msgstr "Divisa predeterminada"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Divisa predeterminada"
msgid "Supplier" msgid "Supplier"
msgstr "Proveedor" msgstr "Proveedor"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Proveedor"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Fabricante"
msgid "Customer" msgid "Customer"
msgstr "Cliente" msgstr "Cliente"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Datos de la empresa" msgstr "Datos de la empresa"
@ -5580,32 +5580,32 @@ msgstr "Datos de la empresa"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Piezas fabricadas" msgstr "Piezas fabricadas"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Piezas suministradas"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Piezas suministradas"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Existencias asignadas" msgstr "Existencias asignadas"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Editar empresa" msgstr "Editar empresa"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Eliminar Empresa" msgstr "Eliminar Empresa"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Acciones de empresa" msgstr "Acciones de empresa"
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Cantidad del paquete" msgstr "Cantidad del paquete"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr "Fabricantes"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Precio Máximo"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Artículos de línea completados" msgstr "Artículos de línea completados"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Añadir Artículo de Línea" msgstr "Añadir Artículo de Línea"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Editar artículo de línea" msgstr "Editar artículo de línea"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "Mostrar elementos de línea que han sido recibidos" msgstr "Mostrar elementos de línea que han sido recibidos"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: es_MX\n" "Language: es_MX\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Spanish, Mexico\n" "Language-Team: Spanish, Mexico\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versión" msgstr "Versión"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versión de API" msgstr "Versión de API"
@ -1144,10 +1144,6 @@ msgstr "Versión de API"
msgid "Plugins" msgid "Plugins"
msgstr "Complementos" msgstr "Complementos"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Habilitado" msgstr "Habilitado"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "Iconos {0}" msgstr "Iconos {0}"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Cargando" msgstr "Cargando"
@ -1374,7 +1374,7 @@ msgstr "Los datos se han importado satisfactoriamente"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Cerrar" msgstr "Cerrar"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Esta información sólo está disponible para usuarios del personal" msgstr "Esta información sólo está disponible para usuarios del personal"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Este panel es un marcador de posición." msgstr "Este panel es un marcador de posición."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Información de la versión" msgstr "Versión de InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Versión de Desarrollo"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Actualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Actualización Disponible"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versión de InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash de Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Fecha del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Rama de Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versión de Python" msgstr "Versión de Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versión de Django" msgstr "Versión de Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash de Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Fecha del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Rama de Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Información de la versión"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Enlaces" msgstr "Enlaces"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentación" msgstr "Documentación"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Código Fuente" msgstr "Código Fuente"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Créditos" msgstr "Créditos"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplicación Móvil"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Enviar Informe de Error"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplicación Móvil"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Enviar Informe de Error"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copiar información de versión" msgstr "Copiar información de versión"
@ -1612,6 +1600,18 @@ msgstr "Copiar información de versión"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Versión de Desarrollo"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Actualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Actualización Disponible"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Texto de licencia no disponible" msgstr "Texto de licencia no disponible"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Ajustes" msgstr "Ajustes"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Ajustes de la cuenta" msgstr "Ajustes de la cuenta"
@ -1745,8 +1745,8 @@ msgstr "Ajustes de la cuenta"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Ajustes del sistema" msgstr "Ajustes del sistema"
@ -1813,7 +1813,7 @@ msgstr "Existencias"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Fabricación" msgstr "Fabricación"
@ -1842,7 +1842,7 @@ msgstr "Ventas"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notificaciones"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Ajustes del usuario" msgstr "Ajustes del usuario"
@ -1895,41 +1895,41 @@ msgstr "No tienes notificaciones sin leer."
msgid "results" msgid "results"
msgstr "resultados" msgstr "resultados"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Introduce texto a buscar" msgstr "Introduce texto a buscar"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Actualizar resultados de búsqueda" msgstr "Actualizar resultados de búsqueda"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opciones de búsqueda" msgstr "Opciones de búsqueda"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Búsqueda por expresión regular" msgstr "Búsqueda por expresión regular"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Búsqueda de palabras completas" msgstr "Búsqueda de palabras completas"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Se ha producido un error durante la consulta de búsqueda"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Se ha producido un error durante la consulta de búsqueda"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Sin Resultados" msgstr "Sin Resultados"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "No hay resultados disponibles para consulta de búsqueda" msgstr "No hay resultados disponibles para consulta de búsqueda"
@ -1967,7 +1967,7 @@ msgstr "Información del complemento"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Modelo desconocido: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Artículo de stock" msgstr "Artículo de stock"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Construir elementos" msgstr "Construir elementos"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Empresa" msgstr "Empresa"
@ -2309,7 +2309,7 @@ msgstr "Pedido de compra"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Orden de venta" msgstr "Orden de venta"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Orden de devolución" msgstr "Orden de devolución"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Dirección" msgstr "Dirección"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Direcciones" msgstr "Direcciones"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contacto" msgstr "Contacto"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contactos" msgstr "Contactos"
@ -2512,7 +2512,7 @@ msgstr "Envío"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Número de serie"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Empaquetado" msgstr "Empaquetado"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Recibido" msgstr "Recibido"
@ -4200,7 +4200,7 @@ msgstr "Confirme su nueva contraseña"
msgid "Confirm" msgid "Confirm"
msgstr "Confirmar" msgstr "Confirmar"
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Comprobando si ya ha iniciado sesión" msgstr "Comprobando si ya ha iniciado sesión"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiquetas" msgstr "Etiquetas"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Informes" msgstr "Informes"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Sitio web" msgstr "Sitio web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de teléfono" msgstr "Número de teléfono"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Dirección de correo electrónico" msgstr "Dirección de correo electrónico"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Divisa predeterminada" msgstr "Divisa predeterminada"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Divisa predeterminada"
msgid "Supplier" msgid "Supplier"
msgstr "Proveedor" msgstr "Proveedor"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Proveedor"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Fabricante"
msgid "Customer" msgid "Customer"
msgstr "Cliente" msgstr "Cliente"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Datos de la empresa" msgstr "Datos de la empresa"
@ -5580,32 +5580,32 @@ msgstr "Datos de la empresa"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Piezas fabricadas" msgstr "Piezas fabricadas"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Piezas suministradas"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Piezas suministradas"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Existencias asignadas" msgstr "Existencias asignadas"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Editar empresa" msgstr "Editar empresa"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Eliminar Empresa" msgstr "Eliminar Empresa"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Acciones de empresa" msgstr "Acciones de empresa"
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Cantidad del paquete" msgstr "Cantidad del paquete"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Precio Máximo"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "Mostrar partidas que han sido recibidas" msgstr "Mostrar partidas que han sido recibidas"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Recibir artículos" msgstr "Recibir artículos"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: et\n" "Language: et\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Estonian\n" "Language-Team: Estonian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versioon" msgstr "Versioon"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API versioon" msgstr "API versioon"
@ -1144,10 +1144,6 @@ msgstr "API versioon"
msgid "Plugins" msgid "Plugins"
msgstr "Pluginad" msgstr "Pluginad"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} ikoonid" msgstr "{0} ikoonid"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Otsing" msgstr "Otsing"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Laadimine" msgstr "Laadimine"
@ -1374,7 +1374,7 @@ msgstr "Andmed on edukalt importitud"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Sulge" msgstr "Sulge"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "See teave on saadaval ainult töötajatele" msgstr "See teave on saadaval ainult töötajatele"
@ -1525,85 +1525,73 @@ msgstr "PHL"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "See paneel on kohatäide." msgstr "See paneel on kohatäide."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Versiooniteave" msgstr "InvenTree Versioon"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Arendusversioon"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Ajakohane"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Värskendus saadaval"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Versioon"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commiti räsi"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Kohustuslik kuupäev"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Anga oks"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Pythoni versioon" msgstr "Pythoni versioon"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django versioon" msgstr "Django versioon"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commiti räsi"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Kohustuslik kuupäev"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Anga oks"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Versiooniteave"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Lingid" msgstr "Lingid"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentatsioon" msgstr "Dokumentatsioon"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Autorid" msgstr "Autorid"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobiilirakendus"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Esita veaaruannete"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobiilirakendus"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Esita veaaruannete"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopeeri versiooniteave" msgstr "Kopeeri versiooniteave"
@ -1612,6 +1600,18 @@ msgstr "Kopeeri versiooniteave"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Arendusversioon"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Ajakohane"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Värskendus saadaval"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Sissekanded puuduvad" msgstr "Sissekanded puuduvad"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Seaded" msgstr "Seaded"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Konto seaded" msgstr "Konto seaded"
@ -1745,8 +1745,8 @@ msgstr "Konto seaded"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Tootmine" msgstr "Tootmine"
@ -1842,7 +1842,7 @@ msgstr "Müük"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Teavitused"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Kasutaja seaded" msgstr "Kasutaja seaded"
@ -1895,41 +1895,41 @@ msgstr "Sul pole lugemata teated."
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Lisage otsitav tekst" msgstr "Lisage otsitav tekst"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Otsingu valikud" msgstr "Otsingu valikud"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex otsing" msgstr "Regex otsing"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Otsingu päringu ajal ilmnes viga"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Otsingu päringu ajal ilmnes viga"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Otsingu päringu jaoks tulemusi pole saadaval" msgstr "Otsingu päringu jaoks tulemusi pole saadaval"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Aadress" msgstr "Aadress"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Aadressid" msgstr "Aadressid"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontaktid" msgstr "Kontaktid"
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Seerianumber"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Pakkimine" msgstr "Pakkimine"
@ -3800,8 +3800,8 @@ msgstr "Tootekood"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Kontrollige, kas olete juba sisse logitud" msgstr "Kontrollige, kas olete juba sisse logitud"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Sildid" msgstr "Sildid"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Aruanded" msgstr "Aruanded"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Veebileht" msgstr "Veebileht"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefoninumber" msgstr "Telefoninumber"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-posti aadress" msgstr "E-posti aadress"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Vaikimisi valuuta" msgstr "Vaikimisi valuuta"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Vaikimisi valuuta"
msgid "Supplier" msgid "Supplier"
msgstr "Tarnija" msgstr "Tarnija"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Tarnija"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Tootja" msgstr "Tootja"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Tootja"
msgid "Customer" msgid "Customer"
msgstr "Klient" msgstr "Klient"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Muuda ettevõtet" msgstr "Muuda ettevõtet"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Kustuta ettevõte" msgstr "Kustuta ettevõte"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Ettevõtte toimingud" msgstr "Ettevõtte toimingud"
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Kogus pakis" msgstr "Kogus pakis"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Maksimaalne hind"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Kustuta parameetrite mall"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fa\n" "Language: fa\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fi\n" "Language: fi\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: fr\n" "Language: fr\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: French\n" "Language-Team: French\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Version" msgstr "Version"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Version de l'API" msgstr "Version de l'API"
@ -1144,10 +1144,6 @@ msgstr "Version de l'API"
msgid "Plugins" msgid "Plugins"
msgstr "Extensions" msgstr "Extensions"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Activé" msgstr "Activé"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "Icônes {0}" msgstr "Icônes {0}"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Rechercher" msgstr "Rechercher"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Chargement" msgstr "Chargement"
@ -1374,7 +1374,7 @@ msgstr "Les données on était correctement importés"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Fermer" msgstr "Fermer"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Ces informations sont uniquement disponibles pour les membres du personnel" msgstr "Ces informations sont uniquement disponibles pour les membres du personnel"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Information sur la version" msgstr "Version d'InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Version de développement"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "À jour"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Mise à jour disponible"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Version d'InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash du commit"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Date de commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Banche de commit"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Version Python " msgstr "Version Python "
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Version de Django" msgstr "Version de Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash du commit"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Date de commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Banche de commit"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Information sur la version"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Liens" msgstr "Liens"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentation" msgstr "Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Crédits" msgstr "Crédits"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Application Mobile"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Soumettre un rapport de Bug"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Application Mobile"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Soumettre un rapport de Bug"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copier les informations de version" msgstr "Copier les informations de version"
@ -1612,6 +1600,18 @@ msgstr "Copier les informations de version"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Version de développement"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "À jour"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Mise à jour disponible"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Aucun texte de licence disponible" msgstr "Aucun texte de licence disponible"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Paramètres du compte" msgstr "Paramètres du compte"
@ -1745,8 +1745,8 @@ msgstr "Paramètres du compte"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Les paramètres du système" msgstr "Les paramètres du système"
@ -1813,7 +1813,7 @@ msgstr "Stock"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Ventes"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notifications"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Paramètres de l'utilisateur" msgstr "Paramètres de l'utilisateur"
@ -1895,41 +1895,41 @@ msgstr "Vous n'avez pas de notifications non lues."
msgid "results" msgid "results"
msgstr "résultats" msgstr "résultats"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Entrez un texte à rechercher" msgstr "Entrez un texte à rechercher"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Options de recherche" msgstr "Options de recherche"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Recherche par regex" msgstr "Recherche par regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Recherche par mot entier" msgstr "Recherche par mot entier"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Une erreur s'est produite lors de la recherche"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Une erreur s'est produite lors de la recherche"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Aucun résultat" msgstr "Aucun résultat"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Aucun résultat disponible pour la requête" msgstr "Aucun résultat disponible pour la requête"
@ -1967,7 +1967,7 @@ msgstr "Informations sur le plugin"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Modèle inconnu : {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Article en stock" msgstr "Article en stock"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Construire des éléments" msgstr "Construire des éléments"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Société" msgstr "Société"
@ -2309,7 +2309,7 @@ msgstr "Commande dachat"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Ventes" msgstr "Ventes"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Retour de commande" msgstr "Retour de commande"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adresse" msgstr "Adresse"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresses" msgstr "Adresses"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contacts" msgstr "Contacts"
@ -2512,7 +2512,7 @@ msgstr "Livraison"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Numéro de série"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Conditionnement" msgstr "Conditionnement"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Réceptionnée" msgstr "Réceptionnée"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Vérifier si vous êtes déjà connecté" msgstr "Vérifier si vous êtes déjà connecté"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Étiquettes" msgstr "Étiquettes"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Rapports" msgstr "Rapports"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Site web" msgstr "Site web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Numéro de téléphone" msgstr "Numéro de téléphone"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Adresse email" msgstr "Adresse email"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Devise par défaut" msgstr "Devise par défaut"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Devise par défaut"
msgid "Supplier" msgid "Supplier"
msgstr "Fournisseur" msgstr "Fournisseur"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Fournisseur"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricant" msgstr "Fabricant"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Fabricant"
msgid "Customer" msgid "Customer"
msgstr "Client" msgstr "Client"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Détails de l'entreprise" msgstr "Détails de l'entreprise"
@ -5580,32 +5580,32 @@ msgstr "Détails de l'entreprise"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Pièces du fabricant" msgstr "Pièces du fabricant"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Pièce fournisseur"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Pièce fournisseur"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Stock attribué" msgstr "Stock attribué"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Modifier la société" msgstr "Modifier la société"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Supprimer la société" msgstr "Supprimer la société"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Actions de la société" msgstr "Actions de la société"
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Quantité du paquet" msgstr "Quantité du paquet"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Prix Maximum"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Destination" msgstr "Destination"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr "Supprimer le paramètre"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Code fournisseur" msgstr "Code fournisseur"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Lien du fournisseur" msgstr "Lien du fournisseur"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Code du fabricant" msgstr "Code du fabricant"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: he\n" "Language: he\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "גרסה" msgstr "גרסה"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "גרסת API" msgstr "גרסת API"
@ -1144,10 +1144,6 @@ msgstr "גרסת API"
msgid "Plugins" msgid "Plugins"
msgstr "תוספים" msgstr "תוספים"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} סמלים" msgstr "{0} סמלים"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "חפש" msgstr "חפש"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "טוען" msgstr "טוען"
@ -1374,7 +1374,7 @@ msgstr "הנתונים יובאו בהצלחה"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "סגור" msgstr "סגור"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "מידע זה זמין רק עבור משתמשי צוות [צוות Staff]" msgstr "מידע זה זמין רק עבור משתמשי צוות [צוות Staff]"
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "לוח זה הוא מציין מיקום." msgstr "לוח זה הוא מציין מיקום."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "מידע גרסה" msgstr "גרסת InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "גרסת פיתוח"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "עדכני"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "עדכון זמין"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "גרסת InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "בצע Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "גרסת פייתון" msgstr "גרסת פייתון"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "גרסת ג'נגו" msgstr "גרסת ג'נגו"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "בצע Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "מידע גרסה"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "קישורים" msgstr "קישורים"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "תיעוד" msgstr "תיעוד"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "קרדיטים" msgstr "קרדיטים"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "אפליקציה לנייד"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "שלח דוח באג"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "אפליקציה לנייד"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "שלח דוח באג"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "העתק את פרטי הגרסה" msgstr "העתק את פרטי הגרסה"
@ -1612,6 +1600,18 @@ msgstr "העתק את פרטי הגרסה"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "גרסת פיתוח"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "עדכני"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "עדכון זמין"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "אין טקסט רישיון זמין" msgstr "אין טקסט רישיון זמין"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "הגדרות" msgstr "הגדרות"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "הגדרות מערכת" msgstr "הגדרות מערכת"
@ -1813,7 +1813,7 @@ msgstr "מלאי"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "מכירות"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "התראות"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "אין לך התראות שלא נקראו."
msgid "results" msgid "results"
msgstr "תוצאות" msgstr "תוצאות"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "הזן טקסט חיפוש" msgstr "הזן טקסט חיפוש"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "אפשרויות חיפוש" msgstr "אפשרויות חיפוש"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "חיפוש רגולרי" msgstr "חיפוש רגולרי"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "חיפוש מילה שלמה" msgstr "חיפוש מילה שלמה"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "אירעה שגיאה במהלך שאילתת החיפוש"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "אירעה שגיאה במהלך שאילתת החיפוש"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "אין תוצאות זמינות עבור שאילתת חיפוש" msgstr "אין תוצאות זמינות עבור שאילתת חיפוש"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "דגם לא ידוע: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "פריט במלאי" msgstr "פריט במלאי"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "בניית פריטים" msgstr "בניית פריטים"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "חברה" msgstr "חברה"
@ -2309,7 +2309,7 @@ msgstr "הזמנות רכש"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "הזמנת מכירה" msgstr "הזמנת מכירה"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "החזרת הזמנה" msgstr "החזרת הזמנה"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "כתובת" msgstr "כתובת"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "כתובות" msgstr "כתובות"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "איש קשר" msgstr "איש קשר"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "אנשי קשר" msgstr "אנשי קשר"
@ -2512,7 +2512,7 @@ msgstr "משלוח"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "מספר סידורי"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "אתר אינטרנט" msgstr "אתר אינטרנט"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hi\n" "Language: hi\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hindi\n" "Language-Team: Hindi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: hu\n" "Language: hu\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -72,7 +72,7 @@ msgstr ""
#: src/components/barcodes/BarcodeInput.tsx:101 #: src/components/barcodes/BarcodeInput.tsx:101
msgid "Barcode Data" msgid "Barcode Data"
msgstr "" msgstr "Vonalkód adat"
#: src/components/barcodes/BarcodeInput.tsx:105 #: src/components/barcodes/BarcodeInput.tsx:105
msgid "No barcode data" msgid "No barcode data"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -114,7 +114,7 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:413 #: src/forms/PurchaseOrderForms.tsx:413
#: src/forms/PurchaseOrderForms.tsx:517 #: src/forms/PurchaseOrderForms.tsx:517
msgid "Scan Barcode" msgid "Scan Barcode"
msgstr "" msgstr "Vonalkód beolvasás"
#: src/components/barcodes/BarcodeScanDialog.tsx:83 #: src/components/barcodes/BarcodeScanDialog.tsx:83
msgid "No matching item found" msgid "No matching item found"
@ -127,7 +127,7 @@ msgstr ""
#: src/components/barcodes/QRCode.tsx:93 #: src/components/barcodes/QRCode.tsx:93
msgid "Low (7%)" msgid "Low (7%)"
msgstr "" msgstr "Alacsony (7%)"
#: src/components/barcodes/QRCode.tsx:94 #: src/components/barcodes/QRCode.tsx:94
msgid "Medium (15%)" msgid "Medium (15%)"
@ -542,7 +542,7 @@ msgstr ""
#: src/components/dashboard/widgets/NewsWidget.tsx:133 #: src/components/dashboard/widgets/NewsWidget.tsx:133
msgid "No News" msgid "No News"
msgstr "" msgstr "Nincsenek új hírek"
#: src/components/dashboard/widgets/NewsWidget.tsx:134 #: src/components/dashboard/widgets/NewsWidget.tsx:134
msgid "There are no unread news items" msgid "There are no unread news items"
@ -621,7 +621,7 @@ msgstr "Válassz képet"
#: src/components/details/DetailsImage.tsx:323 #: src/components/details/DetailsImage.tsx:323
msgid "Download remote image" msgid "Download remote image"
msgstr "" msgstr "Távoli kép letöltése"
#: src/components/details/DetailsImage.tsx:338 #: src/components/details/DetailsImage.tsx:338
msgid "Upload new image" msgid "Upload new image"
@ -637,7 +637,7 @@ msgstr "Kép törlése"
#: src/components/details/DetailsImage.tsx:392 #: src/components/details/DetailsImage.tsx:392
msgid "Download Image" msgid "Download Image"
msgstr "" msgstr "Kép letöltése"
#: src/components/details/DetailsImage.tsx:397 #: src/components/details/DetailsImage.tsx:397
msgid "Image downloaded successfully" msgid "Image downloaded successfully"
@ -709,7 +709,7 @@ msgstr "Jegyzet Mentése"
#: src/components/editors/NotesEditor.tsx:174 #: src/components/editors/NotesEditor.tsx:174
msgid "Close Editor" msgid "Close Editor"
msgstr "" msgstr "Szerkesztő bezárása"
#: src/components/editors/NotesEditor.tsx:181 #: src/components/editors/NotesEditor.tsx:181
msgid "Enable Editing" msgid "Enable Editing"
@ -1093,7 +1093,7 @@ msgstr "Mentés"
#: src/components/forms/InstanceOptions.tsx:59 #: src/components/forms/InstanceOptions.tsx:59
msgid "Select Server" msgid "Select Server"
msgstr "" msgstr "Szerver kiválasztása"
#: src/components/forms/InstanceOptions.tsx:71 #: src/components/forms/InstanceOptions.tsx:71
#~ msgid "Edit possible host options" #~ msgid "Edit possible host options"
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Verzió" msgstr "Verzió"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API verzió" msgstr "API verzió"
@ -1144,16 +1144,16 @@ msgstr "API verzió"
msgid "Plugins" msgid "Plugins"
msgstr "Pluginok" msgstr "Pluginok"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
#: src/tables/settings/TemplateTable.tsx:364 #: src/tables/settings/TemplateTable.tsx:364
#: src/tables/stock/StockItemTestResultTable.tsx:402 #: src/tables/stock/StockItemTestResultTable.tsx:402
msgid "Enabled" msgid "Enabled"
msgstr "Engedélyezve"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
@ -1162,12 +1162,12 @@ msgstr ""
#: src/components/forms/InstanceOptions.tsx:144 #: src/components/forms/InstanceOptions.tsx:144
msgid "Running" msgid "Running"
msgstr "" msgstr "Fut"
#: src/components/forms/InstanceOptions.tsx:144 #: src/components/forms/InstanceOptions.tsx:144
#: src/tables/settings/FailedTasksTable.tsx:48 #: src/tables/settings/FailedTasksTable.tsx:48
msgid "Stopped" msgid "Stopped"
msgstr "" msgstr "Leállítva"
#: src/components/forms/fields/IconField.tsx:81 #: src/components/forms/fields/IconField.tsx:81
msgid "No icon selected" msgid "No icon selected"
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} db" msgstr "{0} db"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Keresés" msgstr "Keresés"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Betöltés" msgstr "Betöltés"
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Bezárás" msgstr "Bezárás"
@ -1424,7 +1424,7 @@ msgstr "Vonalkód műveletek"
#: src/components/items/ActionDropdown.tsx:167 #: src/components/items/ActionDropdown.tsx:167
msgid "View Barcode" msgid "View Barcode"
msgstr "" msgstr "Vonalkód megtekintése"
#: src/components/items/ActionDropdown.tsx:169 #: src/components/items/ActionDropdown.tsx:169
msgid "View barcode" msgid "View barcode"
@ -1506,10 +1506,10 @@ msgstr "InvenTree logó"
#: src/components/items/LanguageToggle.tsx:20 #: src/components/items/LanguageToggle.tsx:20
msgid "Select language" msgid "Select language"
msgstr "" msgstr "Nyelv kiválasztása"
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Ez az információ csak a személyzet számára elérhető" msgstr "Ez az információ csak a személyzet számára elérhető"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Ez egy helykitöltő panel." msgstr "Ez egy helykitöltő panel."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Verzióinformáció" msgstr "InvenTree verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Fejlesztői verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Naprakész"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Frissítés elérhető"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commit hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Commit dátuma"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python verzió" msgstr "Python verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django verzió" msgstr "Django verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commit hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Commit dátuma"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Verzióinformáció"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Linkek" msgstr "Linkek"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentáció" msgstr "Dokumentáció"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr "Forráskód"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Készítők" msgstr "Készítők"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "MobilApp"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Hibajegy beküldése"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "MobilApp"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Hibajegy beküldése"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Verzió információk másolása" msgstr "Verzió információk másolása"
@ -1612,6 +1600,18 @@ msgstr "Verzió információk másolása"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Fejlesztői verzió"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Naprakész"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Frissítés elérhető"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Beállítások" msgstr "Beállítások"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Fiókbeállítások" msgstr "Fiókbeállítások"
@ -1745,8 +1745,8 @@ msgstr "Fiókbeállítások"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Rendszerbeállítások" msgstr "Rendszerbeállítások"
@ -1813,7 +1813,7 @@ msgstr "Készlet"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Eladás"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Értesítések"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Nincs olvasatlan értesítésed."
msgid "results" msgid "results"
msgstr "eredmények" msgstr "eredmények"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Írd be a keresett szöveget" msgstr "Írd be a keresett szöveget"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Keresési opciók" msgstr "Keresési opciók"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex keresés" msgstr "Regex keresés"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Teljes szó keresés" msgstr "Teljes szó keresés"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Hiba történt a keresés közben"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Hiba történt a keresés közben"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Nincs találat" msgstr "Nincs találat"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Nincs találat a keresésre" msgstr "Nincs találat a keresésre"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Ismeretlen model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Készlet tétel" msgstr "Készlet tétel"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Cég" msgstr "Cég"
@ -2309,7 +2309,7 @@ msgstr "Beszerzési rendelés"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Vevői rendelés" msgstr "Vevői rendelés"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Visszavétel" msgstr "Visszavétel"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Cím" msgstr "Cím"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Címek" msgstr "Címek"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kapcsolat" msgstr "Kapcsolat"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kapcsolatok" msgstr "Kapcsolatok"
@ -2425,7 +2425,7 @@ msgstr "Felhasználók"
#: src/components/render/ModelType.tsx:230 #: src/components/render/ModelType.tsx:230
msgid "Group" msgid "Group"
msgstr "" msgstr "Csoport"
#: src/components/render/ModelType.tsx:231 #: src/components/render/ModelType.tsx:231
#: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23 #: src/pages/Index/Settings/AdminCenter/UserManagementPanel.tsx:23
@ -2512,7 +2512,7 @@ msgstr "Szállítmány"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Sorozatszám"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3014,7 +3014,7 @@ msgstr ""
#: src/components/wizards/OrderPartsWizard.tsx:282 #: src/components/wizards/OrderPartsWizard.tsx:282
msgid "Parts Added" msgid "Parts Added"
msgstr "" msgstr "Alkatrészek hozzáadva"
#: src/components/wizards/OrderPartsWizard.tsx:283 #: src/components/wizards/OrderPartsWizard.tsx:283
msgid "All selected parts added to a purchase order" msgid "All selected parts added to a purchase order"
@ -3049,7 +3049,7 @@ msgstr ""
#: src/contexts/LanguageContext.tsx:20 #: src/contexts/LanguageContext.tsx:20
msgid "Arabic" msgid "Arabic"
msgstr "" msgstr "Arab"
#: src/contexts/LanguageContext.tsx:21 #: src/contexts/LanguageContext.tsx:21
msgid "Bulgarian" msgid "Bulgarian"
@ -3125,7 +3125,7 @@ msgstr "Koreai"
#: src/contexts/LanguageContext.tsx:39 #: src/contexts/LanguageContext.tsx:39
msgid "Lithuanian" msgid "Lithuanian"
msgstr "" msgstr "Litván"
#: src/contexts/LanguageContext.tsx:40 #: src/contexts/LanguageContext.tsx:40
msgid "Latvian" msgid "Latvian"
@ -3153,7 +3153,7 @@ msgstr "Portugál (Brazíliai)"
#: src/contexts/LanguageContext.tsx:46 #: src/contexts/LanguageContext.tsx:46
msgid "Romanian" msgid "Romanian"
msgstr "" msgstr "Román"
#: src/contexts/LanguageContext.tsx:47 #: src/contexts/LanguageContext.tsx:47
msgid "Russian" msgid "Russian"
@ -3161,7 +3161,7 @@ msgstr "Orosz"
#: src/contexts/LanguageContext.tsx:48 #: src/contexts/LanguageContext.tsx:48
msgid "Slovak" msgid "Slovak"
msgstr "" msgstr "Szlovák"
#: src/contexts/LanguageContext.tsx:49 #: src/contexts/LanguageContext.tsx:49
msgid "Slovenian" msgid "Slovenian"
@ -3169,7 +3169,7 @@ msgstr "Szlovén"
#: src/contexts/LanguageContext.tsx:50 #: src/contexts/LanguageContext.tsx:50
msgid "Serbian" msgid "Serbian"
msgstr "" msgstr "Szerb"
#: src/contexts/LanguageContext.tsx:51 #: src/contexts/LanguageContext.tsx:51
msgid "Swedish" msgid "Swedish"
@ -3230,7 +3230,7 @@ msgstr "Az inventree.org-ról"
#: src/defaults/actions.tsx:48 #: src/defaults/actions.tsx:48
msgid "Server Information" msgid "Server Information"
msgstr "" msgstr "Szerver Információk"
#: src/defaults/actions.tsx:49 #: src/defaults/actions.tsx:49
#: src/defaults/links.tsx:123 #: src/defaults/links.tsx:123
@ -3241,7 +3241,7 @@ msgstr ""
#: src/defaults/links.tsx:107 #: src/defaults/links.tsx:107
#: src/defaults/links.tsx:129 #: src/defaults/links.tsx:129
msgid "License Information" msgid "License Information"
msgstr "" msgstr "Licensz információk"
#: src/defaults/actions.tsx:56 #: src/defaults/actions.tsx:56
msgid "Licenses for dependencies of the service" msgid "Licenses for dependencies of the service"
@ -3351,7 +3351,7 @@ msgstr "Gyakran ismételt kérdések"
#: src/defaults/links.tsx:68 #: src/defaults/links.tsx:68
msgid "GitHub Repository" msgid "GitHub Repository"
msgstr "" msgstr "GitHub repó"
#: src/defaults/links.tsx:71 #: src/defaults/links.tsx:71
msgid "InvenTree source code on GitHub" msgid "InvenTree source code on GitHub"
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Fogadott" msgstr "Fogadott"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Ellenőrzöm hogy be vagy-e már jelentkezve" msgstr "Ellenőrzöm hogy be vagy-e már jelentkezve"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Címkék" msgstr "Címkék"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Riportolás" msgstr "Riportolás"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Weboldal" msgstr "Weboldal"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "Beszállító" msgstr "Beszállító"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Beszállító"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Gyártó" msgstr "Gyártó"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Gyártó"
msgid "Customer" msgid "Customer"
msgstr "Vevő" msgstr "Vevő"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Gyártott alkatrészek" msgstr "Gyártott alkatrészek"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Szállított alkatrészek"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Szállított alkatrészek"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Hozzárendelt készlet" msgstr "Hozzárendelt készlet"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Cég szerkesztése" msgstr "Cég szerkesztése"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Cég műveletek" msgstr "Cég műveletek"
@ -5682,8 +5682,8 @@ msgstr "Alkatrész leírása"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Csomagolási mennyiség" msgstr "Csomagolási mennyiség"
@ -6111,7 +6111,7 @@ msgstr "Készlet rendelés"
msgid "Part Actions" msgid "Part Actions"
msgstr "Alkatrész műveletek" msgstr "Alkatrész műveletek"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr "Gyártók"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Maximum ár"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Kész sortételek" msgstr "Kész sortételek"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Cél" msgstr "Cél"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Sortétel hozzáadása" msgstr "Sortétel hozzáadása"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Sortétel szerkesztése" msgstr "Sortétel szerkesztése"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Paraméter sablon törlés"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Teljes mennyiség" msgstr "Teljes mennyiség"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Beszállítói kód" msgstr "Beszállítói kód"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Beszállítói link" msgstr "Beszállítói link"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Gyártói kód" msgstr "Gyártói kód"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Sortétel bevételezése" msgstr "Sortétel bevételezése"
@ -8939,7 +8940,7 @@ msgstr "Sortétel bevételezése"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Bevételezés" msgstr "Bevételezés"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: id\n" "Language: id\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Indonesian\n" "Language-Team: Indonesian\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versi" msgstr "Versi"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versi API" msgstr "Versi API"
@ -1144,10 +1144,6 @@ msgstr "Versi API"
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} icon" msgstr "{0} icon"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Cari" msgstr "Cari"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Memuat" msgstr "Memuat"
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Tutup" msgstr "Tutup"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informasi Versi" msgstr "Versi InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Terbaru"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Pembaruan tersedia"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versi InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versi Python" msgstr "Versi Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versi Django" msgstr "Versi Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informasi Versi"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Tautan" msgstr "Tautan"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentasi" msgstr "Dokumentasi"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplikasi Seluler"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplikasi Seluler"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Terbaru"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Pembaruan tersedia"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Pengaturan" msgstr "Pengaturan"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Pengaturan Sistem" msgstr "Pengaturan Sistem"
@ -1813,7 +1813,7 @@ msgstr "Persediaan"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Penjualan"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notifikasi"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Tidak ada hasil" msgstr "Tidak ada hasil"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Model Tidak diketahui: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Perusahaan" msgstr "Perusahaan"
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Alamat" msgstr "Alamat"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontak" msgstr "Kontak"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontak" msgstr "Kontak"
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Nomor Seri"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Telah diterima" msgstr "Telah diterima"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Laman" msgstr "Laman"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Nomor Telepon" msgstr "Nomor Telepon"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Alamat Surel" msgstr "Alamat Surel"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Mata Uang Utama" msgstr "Mata Uang Utama"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Mata Uang Utama"
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Jumlah Total" msgstr "Jumlah Total"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: it\n" "Language: it\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versione" msgstr "Versione"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versione API" msgstr "Versione API"
@ -1144,10 +1144,6 @@ msgstr "Versione API"
msgid "Plugins" msgid "Plugins"
msgstr "Plugin" msgstr "Plugin"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} icone" msgstr "{0} icone"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Ricerca" msgstr "Ricerca"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Caricamento" msgstr "Caricamento"
@ -1374,7 +1374,7 @@ msgstr "I dati sono stati importati correttamente"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Chiudi" msgstr "Chiudi"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Questa informazione è disponibile solo per gli utenti del personale" msgstr "Questa informazione è disponibile solo per gli utenti del personale"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Questo pannello è un segnaposto." msgstr "Questo pannello è un segnaposto."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informazioni sulla versione" msgstr "Versione di InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Versione di sviluppo"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Aggiornato"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Aggiornamento disponibile"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versione di InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Data del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Branch del commit"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versione Python" msgstr "Versione Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versione Django" msgstr "Versione Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Data del Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Branch del commit"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informazioni sulla versione"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Collegamenti" msgstr "Collegamenti"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentazione" msgstr "Documentazione"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Codice Sorgente" msgstr "Codice Sorgente"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Riconoscimenti" msgstr "Riconoscimenti"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "App Mobile"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Invia Segnalazione Bug"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "App Mobile"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Invia Segnalazione Bug"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copia informazioni versione" msgstr "Copia informazioni versione"
@ -1612,6 +1600,18 @@ msgstr "Copia informazioni versione"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Versione di sviluppo"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Aggiornato"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Aggiornamento disponibile"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Nessun testo di licenza disponibile" msgstr "Nessun testo di licenza disponibile"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Impostazioni" msgstr "Impostazioni"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Impostazioni di sistema" msgstr "Impostazioni di sistema"
@ -1813,7 +1813,7 @@ msgstr "Stock"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Fabbricazione" msgstr "Fabbricazione"
@ -1842,7 +1842,7 @@ msgstr "Vendite"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notifiche"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Impostazioni Utente" msgstr "Impostazioni Utente"
@ -1895,41 +1895,41 @@ msgstr "Non hai notifiche non lette."
msgid "results" msgid "results"
msgstr "risultati" msgstr "risultati"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Inserisci il testo della ricerca" msgstr "Inserisci il testo della ricerca"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Aggiorna Risultati di Ricerca" msgstr "Aggiorna Risultati di Ricerca"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opzioni di Ricerca" msgstr "Opzioni di Ricerca"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Ricerca con regex" msgstr "Ricerca con regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Ricerca parole intere" msgstr "Ricerca parole intere"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Si è verificato un errore durante la ricerca"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Si è verificato un errore durante la ricerca"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Nessun risultato disponibile per la ricerca" msgstr "Nessun risultato disponibile per la ricerca"
@ -1967,7 +1967,7 @@ msgstr "Informazioni Plugin"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Modello sconosciuto: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Articolo in magazzino" msgstr "Articolo in magazzino"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Costruisci articoli" msgstr "Costruisci articoli"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Azienda" msgstr "Azienda"
@ -2309,7 +2309,7 @@ msgstr "Ordine d'acquisto"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Ordine di Vendita" msgstr "Ordine di Vendita"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Ordine di reso" msgstr "Ordine di reso"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Indirizzo" msgstr "Indirizzo"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Indirizzi" msgstr "Indirizzi"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contatto" msgstr "Contatto"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contatti" msgstr "Contatti"
@ -2512,7 +2512,7 @@ msgstr "Spedizione"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Numero Seriale"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Imballaggio" msgstr "Imballaggio"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Ricevuto" msgstr "Ricevuto"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Verifica se si è già connessi" msgstr "Verifica se si è già connessi"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Sito Web" msgstr "Sito Web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Dettagli azienda" msgstr "Dettagli azienda"
@ -5580,32 +5580,32 @@ msgstr "Dettagli azienda"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "Mostra gli elementi di riga che sono stati ricevuti" msgstr "Mostra gli elementi di riga che sono stati ricevuti"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ja\n" "Language: ja\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Japanese\n" "Language-Team: Japanese\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr "バーコードデータをスキャンまたは入力"
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "バージョン" msgstr "バージョン"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API バージョン" msgstr "API バージョン"
@ -1144,10 +1144,6 @@ msgstr "API バージョン"
msgid "Plugins" msgid "Plugins"
msgstr "プラグイン" msgstr "プラグイン"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "有効" msgstr "有効"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} アイコン" msgstr "{0} アイコン"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "検索" msgstr "検索"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "読み込み中" msgstr "読み込み中"
@ -1374,7 +1374,7 @@ msgstr "データは正常にインポートされました"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "閉じる" msgstr "閉じる"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "この情報はスタッフユーザーのみ利用可能です。" msgstr "この情報はスタッフユーザーのみ利用可能です。"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "このパネルはプレースホルダーです。" msgstr "このパネルはプレースホルダーです。"
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "バージョン情報" msgstr "InvenTreeバージョン"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "開発バージョン"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "最新情報"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "利用可能なアップデート"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTreeバージョン"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "コミットハッシュ"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "コミット日"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "コミット・ブランチ"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python Version" msgstr "Python Version"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "ジャンゴバージョン" msgstr "ジャンゴバージョン"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "コミットハッシュ"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "コミット日"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "コミット・ブランチ"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "バージョン情報"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "リンク" msgstr "リンク"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "ドキュメント" msgstr "ドキュメント"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "ソースコード" msgstr "ソースコード"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "クレジット" msgstr "クレジット"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "モバイルアプリ"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "バグレポートの提出"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "モバイルアプリ"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "バグレポートの提出"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "バージョン情報のコピー" msgstr "バージョン情報のコピー"
@ -1612,6 +1600,18 @@ msgstr "バージョン情報のコピー"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "開発バージョン"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "最新情報"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "利用可能なアップデート"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "ライセンステキストはありません" msgstr "ライセンステキストはありません"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "設定" msgstr "設定"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "アカウント設定" msgstr "アカウント設定"
@ -1745,8 +1745,8 @@ msgstr "アカウント設定"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "システム設定" msgstr "システム設定"
@ -1813,7 +1813,7 @@ msgstr "在庫"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "製造" msgstr "製造"
@ -1842,7 +1842,7 @@ msgstr "販売"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "通知"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "ユーザー設定" msgstr "ユーザー設定"
@ -1895,41 +1895,41 @@ msgstr "未読の通知はありません。"
msgid "results" msgid "results"
msgstr "結果" msgstr "結果"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "検索文字列の入力" msgstr "検索文字列の入力"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "検索結果の更新" msgstr "検索結果の更新"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "検索設定" msgstr "検索設定"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "正規表現検索" msgstr "正規表現検索"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "全単語検索" msgstr "全単語検索"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "検索中にエラーが発生しました"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "検索中にエラーが発生しました"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "該当なし" msgstr "該当なし"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "検索結果がありません" msgstr "検索結果がありません"
@ -1967,7 +1967,7 @@ msgstr "プラグイン情報"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "不明なモデル{model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "在庫商品" msgstr "在庫商品"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "ビルドアイテム" msgstr "ビルドアイテム"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "会社名" msgstr "会社名"
@ -2309,7 +2309,7 @@ msgstr "注文"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "セールスオーダー" msgstr "セールスオーダー"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "リターンオーダー" msgstr "リターンオーダー"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "住所" msgstr "住所"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "マイアカウント" msgstr "マイアカウント"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "お問い合わせ" msgstr "お問い合わせ"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "連絡先" msgstr "連絡先"
@ -2512,7 +2512,7 @@ msgstr "発送"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "シリアル番号"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "パッケージング" msgstr "パッケージング"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "受信" msgstr "受信"
@ -4200,7 +4200,7 @@ msgstr "確認のため新しいパスワードを再入力してください"
msgid "Confirm" msgid "Confirm"
msgstr "確認" msgstr "確認"
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "ログイン済みかどうかの確認" msgstr "ログイン済みかどうかの確認"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "ラベル" msgstr "ラベル"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "レポート" msgstr "レポート"
@ -5520,23 +5520,23 @@ msgstr "組立注文"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "ウェブサイト" msgstr "ウェブサイト"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "電話番号" msgstr "電話番号"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "メールアドレス" msgstr "メールアドレス"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "デフォルトの通貨" msgstr "デフォルトの通貨"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "デフォルトの通貨"
msgid "Supplier" msgid "Supplier"
msgstr "仕入先" msgstr "仕入先"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "仕入先"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "製造元" msgstr "製造元"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "製造元"
msgid "Customer" msgid "Customer"
msgstr "顧客" msgstr "顧客"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "会社詳細" msgstr "会社詳細"
@ -5580,32 +5580,32 @@ msgstr "会社詳細"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "製造部品" msgstr "製造部品"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "供給部品"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "供給部品"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "割り当て在庫" msgstr "割り当て在庫"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "会社情報を編集" msgstr "会社情報を編集"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "削除会社" msgstr "削除会社"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "会社の動き" msgstr "会社の動き"
@ -5682,8 +5682,8 @@ msgstr "パーツ説明"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "パック数量" msgstr "パック数量"
@ -6111,7 +6111,7 @@ msgstr "注文在庫"
msgid "Part Actions" msgid "Part Actions"
msgstr "パートアクション" msgstr "パートアクション"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "部品リビジョンの選択" msgstr "部品リビジョンの選択"
@ -6252,6 +6252,7 @@ msgstr "メーカー"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "最大価格"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "完了した項目" msgstr "完了した項目"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "目的地" msgstr "目的地"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "アイテムを見る" msgstr "アイテムを見る"
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "項目追加" msgstr "項目追加"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "ラインアイテムの編集" msgstr "ラインアイテムの編集"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "パラメータテンプレートの削除"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "総量" msgstr "総量"
@ -8908,28 +8909,28 @@ msgstr "パラメータの削除"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "ラインアイテムのインポート" msgstr "ラインアイテムのインポート"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "サプライヤーコード" msgstr "サプライヤーコード"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "サプライヤーリンク" msgstr "サプライヤーリンク"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "メーカーコード" msgstr "メーカーコード"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "受領済みの品目を表示" msgstr "受領済みの品目を表示"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "品目を受け取る" msgstr "品目を受け取る"
@ -8939,7 +8940,7 @@ msgstr "品目を受け取る"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "商品を受け取る" msgstr "商品を受け取る"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ko\n" "Language: ko\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Korean\n" "Language-Team: Korean\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lt\n" "Language: lt\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Lithuanian\n" "Language-Team: Lithuanian\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: lv\n" "Language: lv\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Latvian\n" "Language-Team: Latvian\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: nl\n" "Language: nl\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versie" msgstr "Versie"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API versie" msgstr "API versie"
@ -1144,10 +1144,6 @@ msgstr "API versie"
msgid "Plugins" msgid "Plugins"
msgstr "Plug-ins" msgstr "Plug-ins"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Ingeschakeld" msgstr "Ingeschakeld"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} pictogrammen" msgstr "{0} pictogrammen"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Zoeken" msgstr "Zoeken"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Laden" msgstr "Laden"
@ -1374,7 +1374,7 @@ msgstr "De gegevens zijn met succes geïmporteerd"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Sluiten" msgstr "Sluiten"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Deze informatie is alleen beschikbaar voor medewerkers" msgstr "Deze informatie is alleen beschikbaar voor medewerkers"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Dit paneel is een tijdelijke aanduiding." msgstr "Dit paneel is een tijdelijke aanduiding."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Versie informatie" msgstr "InvenTree Versie"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Ontwikkelings versie"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Up to date"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Update beschikbaar"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Versie"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash vastleggen"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Commit datum"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python versie:" msgstr "Python versie:"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django versie" msgstr "Django versie"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash vastleggen"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Commit datum"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Versie informatie"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Links" msgstr "Links"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentatie" msgstr "Documentatie"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Credits" msgstr "Credits"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "App voor mobiel"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Indienen van bugrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "App voor mobiel"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Indienen van bugrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopieer versie informatie" msgstr "Kopieer versie informatie"
@ -1612,6 +1600,18 @@ msgstr "Kopieer versie informatie"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Ontwikkelings versie"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Up to date"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Update beschikbaar"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Geen licentie tekst beschikbaar" msgstr "Geen licentie tekst beschikbaar"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Instellingen" msgstr "Instellingen"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Account instellingen" msgstr "Account instellingen"
@ -1745,8 +1745,8 @@ msgstr "Account instellingen"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Systeem instellingen" msgstr "Systeem instellingen"
@ -1813,7 +1813,7 @@ msgstr "Voorraad"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Productie" msgstr "Productie"
@ -1842,7 +1842,7 @@ msgstr "Verkoop"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Meldingen"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Gebruiker instellingen" msgstr "Gebruiker instellingen"
@ -1895,41 +1895,41 @@ msgstr "Je hebt geen ongelezen berichten."
msgid "results" msgid "results"
msgstr "Resultaat" msgstr "Resultaat"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Geef zoektekst op" msgstr "Geef zoektekst op"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Zoek opties" msgstr "Zoek opties"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex zoeken" msgstr "Regex zoeken"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Volledige woord zoeken" msgstr "Volledige woord zoeken"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Er is een fout opgetreden tijdens de zoekopdracht"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Er is een fout opgetreden tijdens de zoekopdracht"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Geen resultaten" msgstr "Geen resultaten"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Geen resultaten beschikbaar voor zoekopdracht" msgstr "Geen resultaten beschikbaar voor zoekopdracht"
@ -1967,7 +1967,7 @@ msgstr "Plug-in informatie"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Onbekend model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Voorraad item" msgstr "Voorraad item"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Bedrijf" msgstr "Bedrijf"
@ -2309,7 +2309,7 @@ msgstr "Inkooporder"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Verkooporder" msgstr "Verkooporder"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Retourorder" msgstr "Retourorder"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adres:" msgstr "Adres:"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adressen" msgstr "Adressen"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contacten" msgstr "Contacten"
@ -2512,7 +2512,7 @@ msgstr "Verzending"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Serienummer"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Verpakking" msgstr "Verpakking"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Ontvangen" msgstr "Ontvangen"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Controleren of je al ingelogd bent" msgstr "Controleren of je al ingelogd bent"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Labels" msgstr "Labels"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Rapporteren" msgstr "Rapporteren"
@ -5520,23 +5520,23 @@ msgstr "Productieorder"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Website" msgstr "Website"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefoon nummer" msgstr "Telefoon nummer"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-mail adres" msgstr "E-mail adres"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Standaard valuta" msgstr "Standaard valuta"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Standaard valuta"
msgid "Supplier" msgid "Supplier"
msgstr "Leverancier" msgstr "Leverancier"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Leverancier"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabrikant" msgstr "Fabrikant"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Fabrikant"
msgid "Customer" msgid "Customer"
msgstr "Klant" msgstr "Klant"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Bedrijf gegevens" msgstr "Bedrijf gegevens"
@ -5580,32 +5580,32 @@ msgstr "Bedrijf gegevens"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Geproduceerde onderdelen" msgstr "Geproduceerde onderdelen"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Geleverde onderdelen"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Geleverde onderdelen"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Toegewezen voorraad" msgstr "Toegewezen voorraad"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Bedrijf bewerken" msgstr "Bedrijf bewerken"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Bedrijf verwijderen" msgstr "Bedrijf verwijderen"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Bedrijf acties" msgstr "Bedrijf acties"
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Pakket hoeveelheid" msgstr "Pakket hoeveelheid"
@ -6111,7 +6111,7 @@ msgstr "Voorraad bestelling"
msgid "Part Actions" msgid "Part Actions"
msgstr "Acties van onderdeel" msgstr "Acties van onderdeel"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Selecteer onderdeel revisie" msgstr "Selecteer onderdeel revisie"
@ -6252,6 +6252,7 @@ msgstr "Fabrikant"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Maximale prijs"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Afgeronde regel items" msgstr "Afgeronde regel items"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Regel item toevoegen" msgstr "Regel item toevoegen"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Regel item bewerken" msgstr "Regel item bewerken"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Parameter sjabloon verwijderen"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Totale hoeveelheid" msgstr "Totale hoeveelheid"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: no\n" "Language: no\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Norwegian\n" "Language-Team: Norwegian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versjon" msgstr "Versjon"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API-versjon" msgstr "API-versjon"
@ -1144,10 +1144,6 @@ msgstr "API-versjon"
msgid "Plugins" msgid "Plugins"
msgstr "Utvidelser" msgstr "Utvidelser"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Søk" msgstr "Søk"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Laster" msgstr "Laster"
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Denne informasjonen er bare tilgjengelig for ansatte" msgstr "Denne informasjonen er bare tilgjengelig for ansatte"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Denne ruten er en plassholder." msgstr "Denne ruten er en plassholder."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Versjoninformasjon" msgstr "InvenTree-versjon"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Utviklingsversjon"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Oppdatert"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Oppdatering er tilgjengelig"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree-versjon"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commit-hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Commit-dato"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python-versjon" msgstr "Python-versjon"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django-versjon" msgstr "Django-versjon"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commit-hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Commit-dato"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Versjoninformasjon"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Lenker" msgstr "Lenker"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentasjon" msgstr "Dokumentasjon"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Krediteringer" msgstr "Krediteringer"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobilapp"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Send feilrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobilapp"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Send feilrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopiér versjonsinformasjon" msgstr "Kopiér versjonsinformasjon"
@ -1612,6 +1600,18 @@ msgstr "Kopiér versjonsinformasjon"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Utviklingsversjon"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Oppdatert"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Oppdatering er tilgjengelig"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Innstillinger" msgstr "Innstillinger"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Kontoinnstillinger" msgstr "Kontoinnstillinger"
@ -1745,8 +1745,8 @@ msgstr "Kontoinnstillinger"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Systeminnstillinger" msgstr "Systeminnstillinger"
@ -1813,7 +1813,7 @@ msgstr "Lagerbeholdning"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Salg"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Varlser"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Du har ingen uleste varsler."
msgid "results" msgid "results"
msgstr "resultater" msgstr "resultater"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Skriv inn søketekst" msgstr "Skriv inn søketekst"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Alternativer for søk" msgstr "Alternativer for søk"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex-søk" msgstr "Regex-søk"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Helordsøk" msgstr "Helordsøk"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Det oppstod en feil under søk"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Det oppstod en feil under søk"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Ingen resultater tilgjengelig for søk" msgstr "Ingen resultater tilgjengelig for søk"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Ukjent modell: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Lagervare" msgstr "Lagervare"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Firma" msgstr "Firma"
@ -2309,7 +2309,7 @@ msgstr "Innkjøpsordre"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Salgsordre" msgstr "Salgsordre"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Returordre" msgstr "Returordre"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adresse" msgstr "Adresse"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresser" msgstr "Adresser"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakter" msgstr "Kontakter"
@ -2512,7 +2512,7 @@ msgstr "Forsendelse"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Serienummer"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Mottatt" msgstr "Mottatt"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Sjekker om du allerede er innlogget" msgstr "Sjekker om du allerede er innlogget"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiketter" msgstr "Etiketter"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Rapportering" msgstr "Rapportering"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Nettside" msgstr "Nettside"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "Leverandør" msgstr "Leverandør"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Leverandør"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Produsent" msgstr "Produsent"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Produsent"
msgid "Customer" msgid "Customer"
msgstr "Kunde" msgstr "Kunde"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Produserte deler" msgstr "Produserte deler"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Leverte Deler"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Leverte Deler"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Tildelt lagerbeholdning" msgstr "Tildelt lagerbeholdning"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Rediger Bedrift" msgstr "Rediger Bedrift"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Bedriftshandlinger" msgstr "Bedriftshandlinger"
@ -5682,8 +5682,8 @@ msgstr "Delbeskrivelse"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Pakkeantall" msgstr "Pakkeantall"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "Delhandlinger" msgstr "Delhandlinger"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr "Produsenter"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Destinasjon" msgstr "Destinasjon"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Legg til ordrelinje" msgstr "Legg til ordrelinje"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Rediger ordrelinje" msgstr "Rediger ordrelinje"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Slett parametermal"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Totalt Antall" msgstr "Totalt Antall"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Leverandørkode" msgstr "Leverandørkode"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Leverandørlenke" msgstr "Leverandørlenke"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Produsentens kode" msgstr "Produsentens kode"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Motta ordrelinje" msgstr "Motta ordrelinje"
@ -8939,7 +8940,7 @@ msgstr "Motta ordrelinje"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Motta artikler" msgstr "Motta artikler"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pl\n" "Language: pl\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Wersja" msgstr "Wersja"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Wersja API" msgstr "Wersja API"
@ -1144,10 +1144,6 @@ msgstr "Wersja API"
msgid "Plugins" msgid "Plugins"
msgstr "Wtyczki" msgstr "Wtyczki"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} ikon(y)" msgstr "{0} ikon(y)"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Szukaj" msgstr "Szukaj"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Wczytuję" msgstr "Wczytuję"
@ -1374,7 +1374,7 @@ msgstr "Dane zostały zaimportowane"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Zamknij" msgstr "Zamknij"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Ta informacja jest dostępna tylko dla użytkowników personelu" msgstr "Ta informacja jest dostępna tylko dla użytkowników personelu"
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Ten panel jest placeholder." msgstr "Ten panel jest placeholder."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informacje o wersji" msgstr "Wersja InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Wersja rozwojowa"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Aktualna"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Dostępna aktualizacja"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Wersja InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Data commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Gałąź commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Wersja Pythona" msgstr "Wersja Pythona"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Wersja Django" msgstr "Wersja Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Data commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Gałąź commitu"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informacje o wersji"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Linki" msgstr "Linki"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentacja" msgstr "Dokumentacja"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Autorzy" msgstr "Autorzy"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplikacja mobilna"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Prześlij raport o błędzie"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplikacja mobilna"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Prześlij raport o błędzie"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopiuj informacje o wersji" msgstr "Kopiuj informacje o wersji"
@ -1612,6 +1600,18 @@ msgstr "Kopiuj informacje o wersji"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Wersja rozwojowa"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Aktualna"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Dostępna aktualizacja"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Brak dostępnego tekstu licencji" msgstr "Brak dostępnego tekstu licencji"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Ustawienia" msgstr "Ustawienia"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Ustawienia konta" msgstr "Ustawienia konta"
@ -1745,8 +1745,8 @@ msgstr "Ustawienia konta"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Ustawienia systemowe" msgstr "Ustawienia systemowe"
@ -1813,7 +1813,7 @@ msgstr "Stan"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Sprzedaże"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Powiadomienia"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Nie masz żadnych nowych powiadomień."
msgid "results" msgid "results"
msgstr "wyniki" msgstr "wyniki"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Wpisz frazę, którą chcesz wyszukać" msgstr "Wpisz frazę, którą chcesz wyszukać"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opcje wyszukiwania" msgstr "Opcje wyszukiwania"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Wyszukiwanie Regex" msgstr "Wyszukiwanie Regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Wyszukiwanie całych słów" msgstr "Wyszukiwanie całych słów"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Wystąpił błąd podczas wyszukiwania"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Wystąpił błąd podczas wyszukiwania"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Brak dostępnych wyników wyszukiwania" msgstr "Brak dostępnych wyników wyszukiwania"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Nieznany model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Element magazynowy" msgstr "Element magazynowy"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Firma" msgstr "Firma"
@ -2309,7 +2309,7 @@ msgstr "Zlecenie zakupu"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Zlecenie sprzedaży" msgstr "Zlecenie sprzedaży"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adres" msgstr "Adres"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresy" msgstr "Adresy"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakty" msgstr "Kontakty"
@ -2512,7 +2512,7 @@ msgstr "Wysyłka"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Numer seryjny"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Opakowanie" msgstr "Opakowanie"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Otrzymano" msgstr "Otrzymano"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Sprawdzanie, czy jesteś już zalogowany" msgstr "Sprawdzanie, czy jesteś już zalogowany"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etykiety" msgstr "Etykiety"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Raportowanie" msgstr "Raportowanie"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Strona internetowa" msgstr "Strona internetowa"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n" "Language: pt\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1133,7 +1133,7 @@ msgid "Version"
msgstr "Versão" msgstr "Versão"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versão da API" msgstr "Versão da API"
@ -1145,10 +1145,6 @@ msgstr "Versão da API"
msgid "Plugins" msgid "Plugins"
msgstr "Extensões" msgstr "Extensões"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1157,6 +1153,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Habilitado" msgstr "Habilitado"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1197,13 +1197,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "A carregar" msgstr "A carregar"
@ -1375,7 +1375,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1510,7 +1510,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Esta informação está disponível apenas para utilizadores da equipa" msgstr "Esta informação está disponível apenas para utilizadores da equipa"
@ -1526,85 +1526,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Este painel é um espaço reservado." msgstr "Este painel é um espaço reservado."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informação da versão" msgstr "Versão do InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Versão de desenvolvimento"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Atualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Atualização disponível"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versão do InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Data do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versão do Python" msgstr "Versão do Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versão do Django" msgstr "Versão do Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Data do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Commit Branch"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informação da versão"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Ligações" msgstr "Ligações"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentação" msgstr "Documentação"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Créditos" msgstr "Créditos"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplicação móvel"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Submeter Relatório de Erro"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplicação móvel"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Submeter Relatório de Erro"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copiar informação da versão" msgstr "Copiar informação da versão"
@ -1613,6 +1601,18 @@ msgstr "Copiar informação da versão"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Versão de desenvolvimento"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Atualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Atualização disponível"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Nenhum texto de licença disponível" msgstr "Nenhum texto de licença disponível"
@ -1734,7 +1734,7 @@ msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Definições da Conta" msgstr "Definições da Conta"
@ -1746,8 +1746,8 @@ msgstr "Definições da Conta"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Definições de Sistema" msgstr "Definições de Sistema"
@ -1814,7 +1814,7 @@ msgstr "Estoque"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1843,7 +1843,7 @@ msgstr "Vendas"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1851,7 +1851,7 @@ msgstr "Notificações"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1896,41 +1896,41 @@ msgstr "Não tem novas notificações"
msgid "results" msgid "results"
msgstr "resultados" msgstr "resultados"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Introduzir texto de pesquisa" msgstr "Introduzir texto de pesquisa"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opções de Pesquisa" msgstr "Opções de Pesquisa"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Busca por Regex" msgstr "Busca por Regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Pesquisar palavras inteiras" msgstr "Pesquisar palavras inteiras"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Ocorreu um erro durante a busca"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Ocorreu um erro durante a busca"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Sem Resultados" msgstr "Sem Resultados"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Não há resultados disponíveis para a pesquisa" msgstr "Não há resultados disponíveis para a pesquisa"
@ -1968,7 +1968,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2139,7 +2139,7 @@ msgstr "Modelo desconhecido: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2211,7 +2211,7 @@ msgid "Stock Item"
msgstr "Item de Estoque" msgstr "Item de Estoque"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2273,7 +2273,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Empresa" msgstr "Empresa"
@ -2310,7 +2310,7 @@ msgstr "Pedido de Compra"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2339,8 +2339,8 @@ msgid "Sales Order"
msgstr "Pedido de Venda" msgstr "Pedido de Venda"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2362,8 +2362,8 @@ msgid "Return Order"
msgstr "Pedido de Devolução" msgstr "Pedido de Devolução"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2383,7 +2383,7 @@ msgid "Address"
msgstr "Endereço" msgstr "Endereço"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Endereços" msgstr "Endereços"
@ -2395,7 +2395,7 @@ msgid "Contact"
msgstr "Contato" msgstr "Contato"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contatos" msgstr "Contatos"
@ -2513,7 +2513,7 @@ msgstr "Envios"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2553,8 +2553,8 @@ msgstr "Número de Série"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3779,7 +3779,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Embalagem" msgstr "Embalagem"
@ -3801,8 +3801,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Recebido" msgstr "Recebido"
@ -4201,7 +4201,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Verificando se você já fez login" msgstr "Verificando se você já fez login"
@ -5131,7 +5131,7 @@ msgid "Labels"
msgstr "Etiquetas" msgstr "Etiquetas"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Relatórios" msgstr "Relatórios"
@ -5521,23 +5521,23 @@ msgstr "Ordem de Produção"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Site" msgstr "Site"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de Telefone" msgstr "Número de Telefone"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Endereço de Email" msgstr "Endereço de Email"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Moeda Padrão" msgstr "Moeda Padrão"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5550,7 +5550,7 @@ msgstr "Moeda Padrão"
msgid "Supplier" msgid "Supplier"
msgstr "Fornecedor" msgstr "Fornecedor"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5559,7 +5559,7 @@ msgstr "Fornecedor"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5573,7 +5573,7 @@ msgstr "Fabricante"
msgid "Customer" msgid "Customer"
msgstr "Cliente" msgstr "Cliente"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5581,32 +5581,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Peças Fabricadas" msgstr "Peças Fabricadas"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Peças fornecidas"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Peças fornecidas"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Estoque Atribuído" msgstr "Estoque Atribuído"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Editar Empresa" msgstr "Editar Empresa"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Ações da Empresa" msgstr "Ações da Empresa"
@ -5683,8 +5683,8 @@ msgstr "Descrição da Peça"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Quantidade embalada" msgstr "Quantidade embalada"
@ -6112,7 +6112,7 @@ msgstr "Encomendar Estoque"
msgid "Part Actions" msgid "Part Actions"
msgstr "Ações da Peça" msgstr "Ações da Peça"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6253,6 +6253,7 @@ msgstr "Fabricantes"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6296,7 +6297,7 @@ msgstr "Preço Máximo"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6469,7 +6470,7 @@ msgid "Completed Line Items"
msgstr "Itens de Linha Concluídos" msgstr "Itens de Linha Concluídos"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Destino" msgstr "Destino"
@ -7994,8 +7995,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8004,14 +8005,14 @@ msgid "Add Line Item"
msgstr "Adicionar item de linha" msgstr "Adicionar item de linha"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Editar item de linha" msgstr "Editar item de linha"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8361,7 +8362,7 @@ msgstr "Excluir Modelo de Parâmetro"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Quantidade Total" msgstr "Quantidade Total"
@ -8909,28 +8910,28 @@ msgstr "Excluir Parâmetro"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Código do Fornecedor" msgstr "Código do Fornecedor"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Ligação do Fornecedor" msgstr "Ligação do Fornecedor"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Código do Fabricante" msgstr "Código do Fabricante"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Receber item de linha" msgstr "Receber item de linha"
@ -8940,7 +8941,7 @@ msgstr "Receber item de linha"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Receber itens" msgstr "Receber itens"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: pt\n" "Language: pt\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Versão" msgstr "Versão"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Versão da API" msgstr "Versão da API"
@ -1144,10 +1144,6 @@ msgstr "Versão da API"
msgid "Plugins" msgid "Plugins"
msgstr "Extensões" msgstr "Extensões"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Ativado" msgstr "Ativado"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "Ícones {0}" msgstr "Ícones {0}"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Carregando" msgstr "Carregando"
@ -1374,7 +1374,7 @@ msgstr "Dados importados com sucesso"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Fechar" msgstr "Fechar"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Esta informação só está disponível para usuários da equipe" msgstr "Esta informação só está disponível para usuários da equipe"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Este painel é um espaço reservado." msgstr "Este painel é um espaço reservado."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informações da Versão" msgstr "Versão do InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Versão de desenvolvimento"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Atualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Atualização disponível"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Versão do InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Hash do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Data do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Ramo do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Versão do Python" msgstr "Versão do Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Versão do Django" msgstr "Versão do Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Hash do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Data do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Ramo do Commit"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informações da Versão"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Links" msgstr "Links"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Documentação" msgstr "Documentação"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Créditos" msgstr "Créditos"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Aplicativo para celular"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Enviar Relatório de Erro"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Aplicativo para celular"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Enviar Relatório de Erro"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Copiar informações da versão" msgstr "Copiar informações da versão"
@ -1612,6 +1600,18 @@ msgstr "Copiar informações da versão"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Versão de desenvolvimento"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Atualizado"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Atualização disponível"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Nenhum texto de licença disponível" msgstr "Nenhum texto de licença disponível"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Configurações" msgstr "Configurações"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Configurações de Conta" msgstr "Configurações de Conta"
@ -1745,8 +1745,8 @@ msgstr "Configurações de Conta"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Configurações do Sistema" msgstr "Configurações do Sistema"
@ -1813,7 +1813,7 @@ msgstr "Estoque"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Vendas"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notificações"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Você não tem notificações não lidas."
msgid "results" msgid "results"
msgstr "resultados" msgstr "resultados"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Digite o texto de pesquisa" msgstr "Digite o texto de pesquisa"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opções de pesquisa" msgstr "Opções de pesquisa"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Busca por Regex" msgstr "Busca por Regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Pesquisa de palavras inteira" msgstr "Pesquisa de palavras inteira"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Ocorreu um erro durante a pesquisa"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Ocorreu um erro durante a pesquisa"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Nenhum Resultado" msgstr "Nenhum Resultado"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Não há resultados disponíveis para a pesquisa" msgstr "Não há resultados disponíveis para a pesquisa"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Modelo desconhecido: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Item de estoque" msgstr "Item de estoque"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Criar itens" msgstr "Criar itens"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Empresa" msgstr "Empresa"
@ -2309,7 +2309,7 @@ msgstr "Pedido de Compra"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Pedido de Venda" msgstr "Pedido de Venda"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Pedido de Devolução" msgstr "Pedido de Devolução"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Endereço" msgstr "Endereço"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Endereços" msgstr "Endereços"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Contato" msgstr "Contato"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Contatos" msgstr "Contatos"
@ -2512,7 +2512,7 @@ msgstr "Remessa"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Número de Série"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Embalagem" msgstr "Embalagem"
@ -3800,8 +3800,8 @@ msgstr "Código (SKU)"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Recebido" msgstr "Recebido"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Checando se você já está conectado" msgstr "Checando se você já está conectado"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiquetas" msgstr "Etiquetas"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Relatórios" msgstr "Relatórios"
@ -5520,23 +5520,23 @@ msgstr "Ondem de Produção"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Página Web" msgstr "Página Web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de telefone" msgstr "Número de telefone"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Endereço de e-mail" msgstr "Endereço de e-mail"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Moeda Padrão" msgstr "Moeda Padrão"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Moeda Padrão"
msgid "Supplier" msgid "Supplier"
msgstr "Fornecedor" msgstr "Fornecedor"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Fornecedor"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Fabricante" msgstr "Fabricante"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Fabricante"
msgid "Customer" msgid "Customer"
msgstr "Cliente" msgstr "Cliente"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Peças Fabricadas" msgstr "Peças Fabricadas"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Peças Fornecidas"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Peças Fornecidas"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Estoque Atribuído" msgstr "Estoque Atribuído"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Editar Empresa" msgstr "Editar Empresa"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Excluir Empresa" msgstr "Excluir Empresa"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Ações da Empresa" msgstr "Ações da Empresa"
@ -5682,8 +5682,8 @@ msgstr "Descrição da Peça"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Quantidade de embalagens" msgstr "Quantidade de embalagens"
@ -6111,7 +6111,7 @@ msgstr "Pedir estoque"
msgid "Part Actions" msgid "Part Actions"
msgstr "Ações da Peça" msgstr "Ações da Peça"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Selecionar Revisão de Parte" msgstr "Selecionar Revisão de Parte"
@ -6252,6 +6252,7 @@ msgstr "Fabricantes"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Preço Máximo"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Itens de Linha Concluídos" msgstr "Itens de Linha Concluídos"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Destino" msgstr "Destino"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Adicionar Item de Linha" msgstr "Adicionar Item de Linha"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Editar Item de Linha" msgstr "Editar Item de Linha"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Excluir Modelo de Parâmetro"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Quantidade Total" msgstr "Quantidade Total"
@ -8908,28 +8909,28 @@ msgstr "Excluir Parâmetro"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "Importar Itens da Linha" msgstr "Importar Itens da Linha"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Código do Fornecedor" msgstr "Código do Fornecedor"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Link do Fornecedor" msgstr "Link do Fornecedor"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Código do Fabricante" msgstr "Código do Fabricante"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Receber item de linha" msgstr "Receber item de linha"
@ -8939,7 +8940,7 @@ msgstr "Receber item de linha"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Receber itens" msgstr "Receber itens"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ro\n" "Language: ro\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Romanian\n" "Language-Team: Romanian\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: ru\n" "Language: ru\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Версия" msgstr "Версия"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Версия API" msgstr "Версия API"
@ -1144,10 +1144,6 @@ msgstr "Версия API"
msgid "Plugins" msgid "Plugins"
msgstr "Плагины" msgstr "Плагины"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} иконок" msgstr "{0} иконок"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Поиск" msgstr "Поиск"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Загрузка" msgstr "Загрузка"
@ -1374,7 +1374,7 @@ msgstr "Данные успешно импортированы"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Закрыть" msgstr "Закрыть"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Эта информация доступна только для сотрудников" msgstr "Эта информация доступна только для сотрудников"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Эта панель является условной." msgstr "Эта панель является условной."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Информация о версии" msgstr "Версия InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Версия разработки"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Последняя версия"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Доступно обновление"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Версия InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Хеш коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Дата коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Ветка коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Версия Python" msgstr "Версия Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Версия Django" msgstr "Версия Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Хеш коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Дата коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Ветка коммита"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Информация о версии"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Ссылки" msgstr "Ссылки"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Документация" msgstr "Документация"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Исходный код" msgstr "Исходный код"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Авторы" msgstr "Авторы"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Мобильное Приложение"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Сообщить об ошибке"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Мобильное Приложение"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Сообщить об ошибке"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Копировать информацию о версии" msgstr "Копировать информацию о версии"
@ -1612,6 +1600,18 @@ msgstr "Копировать информацию о версии"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Версия разработки"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Последняя версия"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Доступно обновление"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Нет доступного текста лицензии" msgstr "Нет доступного текста лицензии"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Настройки" msgstr "Настройки"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Настройки учетной записи" msgstr "Настройки учетной записи"
@ -1745,8 +1745,8 @@ msgstr "Настройки учетной записи"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Системные настройки" msgstr "Системные настройки"
@ -1813,7 +1813,7 @@ msgstr "Остатки"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Производство" msgstr "Производство"
@ -1842,7 +1842,7 @@ msgstr "Продажи"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Уведомления"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Пользовательские настройки" msgstr "Пользовательские настройки"
@ -1895,41 +1895,41 @@ msgstr "У вас нет непрочитанных уведомлений."
msgid "results" msgid "results"
msgstr "результаты" msgstr "результаты"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Введите слова для поиска" msgstr "Введите слова для поиска"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Обновить результаты поиска" msgstr "Обновить результаты поиска"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Параметры поиска" msgstr "Параметры поиска"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Поиск по выражению" msgstr "Поиск по выражению"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Поиск полного слова" msgstr "Поиск полного слова"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Произошла ошибка во время поиска запроса"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Произошла ошибка во время поиска запроса"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Нет доступных результатов для поискового запроса" msgstr "Нет доступных результатов для поискового запроса"
@ -1967,7 +1967,7 @@ msgstr "Информация о плагине"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Неизвестная модель: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "На складе" msgstr "На складе"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Товары производства" msgstr "Товары производства"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Компания" msgstr "Компания"
@ -2309,7 +2309,7 @@ msgstr "Заказ на закупку"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Заказ на продажу" msgstr "Заказ на продажу"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Заказ на возврат" msgstr "Заказ на возврат"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Адрес" msgstr "Адрес"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Адреса" msgstr "Адреса"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Контакт" msgstr "Контакт"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Контакты" msgstr "Контакты"
@ -2512,7 +2512,7 @@ msgstr "Отгрузка"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Серийный номер"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Упаковка" msgstr "Упаковка"
@ -3800,8 +3800,8 @@ msgstr "Артикул"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Получено" msgstr "Получено"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Проверка того, что вы уже вошли в систему" msgstr "Проверка того, что вы уже вошли в систему"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Метки" msgstr "Метки"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Отчеты" msgstr "Отчеты"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Веб-сайт" msgstr "Веб-сайт"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5642,7 +5642,7 @@ msgstr ""
#: src/pages/company/ManufacturerPartDetail.tsx:165 #: src/pages/company/ManufacturerPartDetail.tsx:165
#: src/pages/part/PartDetail.tsx:486 #: src/pages/part/PartDetail.tsx:486
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr "Параметры"
#: src/pages/company/ManufacturerPartDetail.tsx:177 #: src/pages/company/ManufacturerPartDetail.tsx:177
#: src/pages/part/PartDetail.tsx:560 #: src/pages/part/PartDetail.tsx:560
@ -5682,8 +5682,8 @@ msgstr "Описание детали"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7184,7 +7185,7 @@ msgstr ""
#: src/tables/InvenTreeTable.tsx:440 #: src/tables/InvenTreeTable.tsx:440
#: src/tables/InvenTreeTable.tsx:468 #: src/tables/InvenTreeTable.tsx:468
msgid "No records found" msgid "No records found"
msgstr "" msgstr "Записи не найдены"
#: src/tables/InvenTreeTable.tsx:214 #: src/tables/InvenTreeTable.tsx:214
msgid "Failed to load table options" msgid "Failed to load table options"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Ссылка поставщика" msgstr "Ссылка поставщика"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sk\n" "Language: sk\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Slovak\n" "Language-Team: Slovak\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sl\n" "Language: sl\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Slovenian\n" "Language-Team: Slovenian\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sr\n" "Language: sr\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Serbian (Latin)\n" "Language-Team: Serbian (Latin)\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
@ -92,7 +92,7 @@ msgstr "Skeniraj ili unesi podatke bar koda"
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Verzija" msgstr "Verzija"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API Verzija" msgstr "API Verzija"
@ -1144,10 +1144,6 @@ msgstr "API Verzija"
msgid "Plugins" msgid "Plugins"
msgstr "Ekstenzije" msgstr "Ekstenzije"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Omogućeno" msgstr "Omogućeno"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} ikone" msgstr "{0} ikone"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Pretraga" msgstr "Pretraga"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Učitavanje" msgstr "Učitavanje"
@ -1374,7 +1374,7 @@ msgstr "Podaci su učitani uspešno"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Zatvori" msgstr "Zatvori"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Ove informacije dostupne su samo korisnicima osoblja" msgstr "Ove informacije dostupne su samo korisnicima osoblja"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Ovaj panel je rezervisan." msgstr "Ovaj panel je rezervisan."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Informacije o verziji" msgstr "InvenTree Verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Razvojna verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Obnovljeno"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Obnova je dostupna"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Potvrdi hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Datum Potvrde"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Potvrdi granu"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python Verzija" msgstr "Python Verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django Verzija" msgstr "Django Verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Potvrdi hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Datum Potvrde"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Potvrdi granu"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Informacije o verziji"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Linkovi" msgstr "Linkovi"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentacija" msgstr "Dokumentacija"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Izvorni kod" msgstr "Izvorni kod"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Zasluge" msgstr "Zasluge"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobilna aplikacija"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Podnesi izveštaj o neispravnosti aplikacije"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobilna aplikacija"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Podnesi izveštaj o neispravnosti aplikacije"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopiraj informacije o verziji" msgstr "Kopiraj informacije o verziji"
@ -1612,6 +1600,18 @@ msgstr "Kopiraj informacije o verziji"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Razvojna verzija"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Obnovljeno"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Obnova je dostupna"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Tekst o licenci nije dostupan" msgstr "Tekst o licenci nije dostupan"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Podešavanje" msgstr "Podešavanje"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Podešavanje naloga" msgstr "Podešavanje naloga"
@ -1745,8 +1745,8 @@ msgstr "Podešavanje naloga"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Sistemska podešavanja" msgstr "Sistemska podešavanja"
@ -1813,7 +1813,7 @@ msgstr "Zalihe"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "Proizvodnja" msgstr "Proizvodnja"
@ -1842,7 +1842,7 @@ msgstr "Prodaja"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Obaveštenja"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Korisnička podešavanja" msgstr "Korisnička podešavanja"
@ -1895,41 +1895,41 @@ msgstr "Nemate nepročitana obaveštenja"
msgid "results" msgid "results"
msgstr "Rezultati" msgstr "Rezultati"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Unesi tekst za pretragu" msgstr "Unesi tekst za pretragu"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "Osveži rezultate pretrage" msgstr "Osveži rezultate pretrage"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Opcije pretraživanja" msgstr "Opcije pretraživanja"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex pretraga" msgstr "Regex pretraga"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Pretraga preko cele reči" msgstr "Pretraga preko cele reči"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Desila se greška prilikom pretrage"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Desila se greška prilikom pretrage"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Nema rezultata" msgstr "Nema rezultata"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Željena pretraga nema rezultata" msgstr "Željena pretraga nema rezultata"
@ -1967,7 +1967,7 @@ msgstr "Informacije o ekstenziji"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Nepoznat model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Stavka zalihe" msgstr "Stavka zalihe"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Stavke izgradnje" msgstr "Stavke izgradnje"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Kompanija" msgstr "Kompanija"
@ -2309,7 +2309,7 @@ msgstr "Narudžbenica"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Nalog za prodaju" msgstr "Nalog za prodaju"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Nalog za povrat" msgstr "Nalog za povrat"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adresa" msgstr "Adresa"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adrese" msgstr "Adrese"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakti" msgstr "Kontakti"
@ -2512,7 +2512,7 @@ msgstr "Pošiljka"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Serijski broj"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Pakovanje" msgstr "Pakovanje"
@ -3800,8 +3800,8 @@ msgstr "Jedinica za praćenje zaliha"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Primljeno" msgstr "Primljeno"
@ -4200,7 +4200,7 @@ msgstr "Potvrdite novu lozinku"
msgid "Confirm" msgid "Confirm"
msgstr "Potvrdi" msgstr "Potvrdi"
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Proverava se da li ste već prijavljeni" msgstr "Proverava se da li ste već prijavljeni"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Oznake" msgstr "Oznake"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Izveštavanje" msgstr "Izveštavanje"
@ -5520,23 +5520,23 @@ msgstr "Nalog za izradu"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Web sajt" msgstr "Web sajt"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Broj telefona" msgstr "Broj telefona"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-mail adresa" msgstr "E-mail adresa"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Podrazumevana valuta" msgstr "Podrazumevana valuta"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Podrazumevana valuta"
msgid "Supplier" msgid "Supplier"
msgstr "Dobavljač" msgstr "Dobavljač"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Dobavljač"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Proizvođač" msgstr "Proizvođač"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Proizvođač"
msgid "Customer" msgid "Customer"
msgstr "Mušterija" msgstr "Mušterija"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "Detalji firme" msgstr "Detalji firme"
@ -5580,32 +5580,32 @@ msgstr "Detalji firme"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Proizvedeni delovi" msgstr "Proizvedeni delovi"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Dostavljeni delovi"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Dostavljeni delovi"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Dodeljene zalihe" msgstr "Dodeljene zalihe"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Izmeni firmu" msgstr "Izmeni firmu"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Obriši firmu" msgstr "Obriši firmu"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Akcije firme" msgstr "Akcije firme"
@ -5682,8 +5682,8 @@ msgstr "Opis dela"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Količina pakovanja" msgstr "Količina pakovanja"
@ -6111,7 +6111,7 @@ msgstr "Naruči zalihe"
msgid "Part Actions" msgid "Part Actions"
msgstr "Akcije dela" msgstr "Akcije dela"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Izaberite reviziju dela" msgstr "Izaberite reviziju dela"
@ -6252,6 +6252,7 @@ msgstr "Proizvođači"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Maksimalna cena"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Završene stavke narudžbine" msgstr "Završene stavke narudžbine"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Odredište" msgstr "Odredište"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "Pogledaj stavku" msgstr "Pogledaj stavku"
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Dodaj stavku" msgstr "Dodaj stavku"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Izmeni stavku" msgstr "Izmeni stavku"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Obriši šablon parametara"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Ukupna količina" msgstr "Ukupna količina"
@ -8908,28 +8909,28 @@ msgstr "Obriši parametar"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "Uvezi stavke" msgstr "Uvezi stavke"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Kod dobavljača" msgstr "Kod dobavljača"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Link dobavljača" msgstr "Link dobavljača"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Kod proizvođača" msgstr "Kod proizvođača"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "Prikaži stavke koje su primljene" msgstr "Prikaži stavke koje su primljene"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Primi stavku" msgstr "Primi stavku"
@ -8939,7 +8940,7 @@ msgstr "Primi stavku"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Primi stavke" msgstr "Primi stavke"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: sv\n" "Language: sv\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Version" msgstr "Version"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API Version" msgstr "API Version"
@ -1144,10 +1144,6 @@ msgstr "API Version"
msgid "Plugins" msgid "Plugins"
msgstr "Plugins" msgstr "Plugins"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} ikoner" msgstr "{0} ikoner"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Sök" msgstr "Sök"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Laddar" msgstr "Laddar"
@ -1374,7 +1374,7 @@ msgstr "Data har importerats framgångsrikt"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Stäng" msgstr "Stäng"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Denna information är endast tillgänglig för personalanvändare" msgstr "Denna information är endast tillgänglig för personalanvändare"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Denna panel är en platshållare." msgstr "Denna panel är en platshållare."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Versionsinformation" msgstr "InvenTree Version"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Utvecklingsversion"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Aktuell"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Uppdatering tillgänglig"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Version"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python Version" msgstr "Python Version"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django Version" msgstr "Django Version"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Versionsinformation"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Länkar" msgstr "Länkar"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokumentation" msgstr "Dokumentation"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "Källkod" msgstr "Källkod"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobilapp"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Skicka felrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobilapp"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Skicka felrapport"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Kopiera versionsinformation" msgstr "Kopiera versionsinformation"
@ -1612,6 +1600,18 @@ msgstr "Kopiera versionsinformation"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Utvecklingsversion"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Aktuell"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Uppdatering tillgänglig"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Ingen licenstext tillgänglig" msgstr "Ingen licenstext tillgänglig"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Inställningar" msgstr "Inställningar"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Kontoinställningar" msgstr "Kontoinställningar"
@ -1745,8 +1745,8 @@ msgstr "Kontoinställningar"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Systeminställningar" msgstr "Systeminställningar"
@ -1813,7 +1813,7 @@ msgstr "Lagersaldo"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Försäljning"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Notifikationer"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "Användarinställningar" msgstr "Användarinställningar"
@ -1895,41 +1895,41 @@ msgstr "Du har inga olästa aviseringar."
msgid "results" msgid "results"
msgstr "resultat" msgstr "resultat"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Ange sökord" msgstr "Ange sökord"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Sökalternativ" msgstr "Sökalternativ"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex sökning" msgstr "Regex sökning"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Hela ordsökningen" msgstr "Hela ordsökningen"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Ett fel inträffade under sökfrågan"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Ett fel inträffade under sökfrågan"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Inga resultat" msgstr "Inga resultat"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Inga resultat tillgängliga för sökfrågan" msgstr "Inga resultat tillgängliga för sökfrågan"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Okänd modell: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Lager artikel" msgstr "Lager artikel"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Tillverknings artiklar" msgstr "Tillverknings artiklar"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Företag" msgstr "Företag"
@ -2309,7 +2309,7 @@ msgstr "Inköpsorder"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Försäljningsorder" msgstr "Försäljningsorder"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Returorder" msgstr "Returorder"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adress" msgstr "Adress"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresser" msgstr "Adresser"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Kontakter" msgstr "Kontakter"
@ -2512,7 +2512,7 @@ msgstr "Frakt"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Serienummer"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Kontrollerar om du redan är inloggad" msgstr "Kontrollerar om du redan är inloggad"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiketter" msgstr "Etiketter"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Rapportering" msgstr "Rapportering"
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Webbplats" msgstr "Webbplats"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefonnummer" msgstr "Telefonnummer"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-postadress" msgstr "E-postadress"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Standardvaluta" msgstr "Standardvaluta"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Standardvaluta"
msgid "Supplier" msgid "Supplier"
msgstr "Leverantör" msgstr "Leverantör"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Leverantör"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Tillverkare" msgstr "Tillverkare"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Tillverkare"
msgid "Customer" msgid "Customer"
msgstr "Kund" msgstr "Kund"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Tillverkarens artiklar" msgstr "Tillverkarens artiklar"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Leverantörsartiklar"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Leverantörsartiklar"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Tilldelad Lager" msgstr "Tilldelad Lager"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Redigera företag" msgstr "Redigera företag"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Radera företag" msgstr "Radera företag"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "Artikel åtgärder" msgstr "Artikel åtgärder"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Välj artikel revision" msgstr "Välj artikel revision"
@ -6252,6 +6252,7 @@ msgstr "Tillverkare"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: th\n" "Language: th\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Thai\n" "Language-Team: Thai\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "" msgstr ""
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "" msgstr ""
@ -1612,6 +1600,18 @@ msgstr ""
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "" msgstr ""
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "" msgstr ""
@ -1813,7 +1813,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr ""
msgid "results" msgid "results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr ""
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr ""
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5682,8 +5682,8 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: tr\n" "Language: tr\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Sürüm" msgstr "Sürüm"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API Sürümü" msgstr "API Sürümü"
@ -1144,10 +1144,6 @@ msgstr "API Sürümü"
msgid "Plugins" msgid "Plugins"
msgstr "Eklentiler" msgstr "Eklentiler"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "Etkin" msgstr "Etkin"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} simge" msgstr "{0} simge"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Ara" msgstr "Ara"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Yükleniyor" msgstr "Yükleniyor"
@ -1374,7 +1374,7 @@ msgstr "Veri başarıyla içe aktarıldı"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Kapat" msgstr "Kapat"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Bu bilgi yalnızca personel kullanıcılar için mevcuttur" msgstr "Bu bilgi yalnızca personel kullanıcılar için mevcuttur"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Bu panel bir yer tutucudur." msgstr "Bu panel bir yer tutucudur."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Sürüm Bilgisi" msgstr "InvenTree Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Geliştirme Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Güncel"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Güncelleme Var"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "İşleme Hash Kodu"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "İşleme Tarihi"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Dalı İşle"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python Sürümü" msgstr "Python Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django Sürümü" msgstr "Django Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "İşleme Hash Kodu"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "İşleme Tarihi"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Dalı İşle"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Sürüm Bilgisi"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Bağlantılar" msgstr "Bağlantılar"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Dokümantasyon" msgstr "Dokümantasyon"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Emeği Geçenler" msgstr "Emeği Geçenler"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Mobil Uygulama"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Hata Raporla"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Mobil Uygulama"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Hata Raporla"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Sürüm bilgisini kopyala" msgstr "Sürüm bilgisini kopyala"
@ -1612,6 +1600,18 @@ msgstr "Sürüm bilgisini kopyala"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Geliştirme Sürümü"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Güncel"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Güncelleme Var"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Kullanılabilir lisans metni yok" msgstr "Kullanılabilir lisans metni yok"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Hesap Ayarları" msgstr "Hesap Ayarları"
@ -1745,8 +1745,8 @@ msgstr "Hesap Ayarları"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Sistem Ayarları" msgstr "Sistem Ayarları"
@ -1813,7 +1813,7 @@ msgstr "Stok"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Satışlar"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Bildirimler"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Okunmamış bildiriminiz yok."
msgid "results" msgid "results"
msgstr "sonuçlar" msgstr "sonuçlar"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Arama metnini gir" msgstr "Arama metnini gir"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Arama Seçenekleri" msgstr "Arama Seçenekleri"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Regex arama" msgstr "Regex arama"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Tam kelime arama" msgstr "Tam kelime arama"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Arama sorgusu sırasında bir hata oluştu"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Arama sorgusu sırasında bir hata oluştu"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "Sonuç Yok" msgstr "Sonuç Yok"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Arama sorgusu için sonuç yok" msgstr "Arama sorgusu için sonuç yok"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Bilinmeyen model: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Stok Ögesi" msgstr "Stok Ögesi"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Yapı Ögeleri" msgstr "Yapı Ögeleri"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Şirket" msgstr "Şirket"
@ -2309,7 +2309,7 @@ msgstr "Satın Alma Siparişi"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Satış Siparişi" msgstr "Satış Siparişi"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "İade Emri" msgstr "İade Emri"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Adres" msgstr "Adres"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Adresler" msgstr "Adresler"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Bağlantı" msgstr "Bağlantı"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Bağlantılar" msgstr "Bağlantılar"
@ -2512,7 +2512,7 @@ msgstr "Gönderi"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Seri Numarası"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Paketleme" msgstr "Paketleme"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Alındı" msgstr "Alındı"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Zaten giriş yapıp yapmadığınız kontrol ediliyor" msgstr "Zaten giriş yapıp yapmadığınız kontrol ediliyor"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Etiketler" msgstr "Etiketler"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Raporlama" msgstr "Raporlama"
@ -5520,23 +5520,23 @@ msgstr "Yapım Siparişi"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Web Sitesi" msgstr "Web Sitesi"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefon Numarası" msgstr "Telefon Numarası"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "E-posta Adresi" msgstr "E-posta Adresi"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Varsayılan Para Birimi" msgstr "Varsayılan Para Birimi"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Varsayılan Para Birimi"
msgid "Supplier" msgid "Supplier"
msgstr "Sağlayıcı" msgstr "Sağlayıcı"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Sağlayıcı"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Üretici" msgstr "Üretici"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Üretici"
msgid "Customer" msgid "Customer"
msgstr "Müşteri" msgstr "Müşteri"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Üretilen Parçalar" msgstr "Üretilen Parçalar"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Sağlanan Parçalar"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Sağlanan Parçalar"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Atanan Parçalar" msgstr "Atanan Parçalar"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Şirketi Düzenle" msgstr "Şirketi Düzenle"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Şirketi Sil" msgstr "Şirketi Sil"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Şirket Eylemleri" msgstr "Şirket Eylemleri"
@ -5682,8 +5682,8 @@ msgstr "Parça Açıklaması"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Paket Miktarı" msgstr "Paket Miktarı"
@ -6111,7 +6111,7 @@ msgstr "Stok Sipariş Et"
msgid "Part Actions" msgid "Part Actions"
msgstr "Parça Eylemleri" msgstr "Parça Eylemleri"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Parça Revizyonu Seç" msgstr "Parça Revizyonu Seç"
@ -6252,6 +6252,7 @@ msgstr "Üreticiler"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Maximum Fiyat"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Tamamlanan Satır Ögeleri" msgstr "Tamamlanan Satır Ögeleri"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Hedef" msgstr "Hedef"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Satır Ögesi Ekle" msgstr "Satır Ögesi Ekle"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Satır Ögesini Düzenle" msgstr "Satır Ögesini Düzenle"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "Parametre Şablonunu Sil"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Toplam Miktar" msgstr "Toplam Miktar"
@ -8908,28 +8909,28 @@ msgstr "Parametreyi Sil"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "İçe Satır Ögeleri Aktar" msgstr "İçe Satır Ögeleri Aktar"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Sağlayıcı Kodu" msgstr "Sağlayıcı Kodu"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Sağlayıcı Bağlantısı" msgstr "Sağlayıcı Bağlantısı"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Üretici Kodu" msgstr "Üretici Kodu"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Satır ögesini teslim al" msgstr "Satır ögesini teslim al"
@ -8939,7 +8940,7 @@ msgstr "Satır ögesini teslim al"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Ögeleri teslim al" msgstr "Ögeleri teslim al"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: uk\n" "Language: uk\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -168,7 +168,7 @@ msgstr ""
#: src/pages/sales/SalesOrderDetail.tsx:181 #: src/pages/sales/SalesOrderDetail.tsx:181
#: src/pages/sales/SalesOrderShipmentDetail.tsx:169 #: src/pages/sales/SalesOrderShipmentDetail.tsx:169
msgid "Link" msgid "Link"
msgstr "" msgstr "Посилання"
#: src/components/barcodes/QRCode.tsx:199 #: src/components/barcodes/QRCode.tsx:199
msgid "This will remove the link to the associated barcode" msgid "This will remove the link to the associated barcode"
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Версія" msgstr "Версія"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "" msgstr ""
@ -1144,10 +1144,6 @@ msgstr ""
msgid "Plugins" msgid "Plugins"
msgstr "Плагіни" msgstr "Плагіни"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "Значки {0}" msgstr "Значки {0}"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Пошук" msgstr "Пошук"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Завантаження" msgstr "Завантаження"
@ -1374,7 +1374,7 @@ msgstr ""
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "" msgstr ""
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "" msgstr ""
@ -1525,85 +1525,73 @@ msgstr ""
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Документація" msgstr "Документація"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Мобільний додаток"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Повідомити про помилку"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Мобільний додаток"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Повідомити про помилку"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Копіювати інформацію про версію" msgstr "Копіювати інформацію про версію"
@ -1612,6 +1600,18 @@ msgstr "Копіювати інформацію про версію"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr ""
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "" msgstr ""
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Налаштування" msgstr "Налаштування"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "" msgstr ""
@ -1745,8 +1745,8 @@ msgstr ""
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Налаштування системи" msgstr "Налаштування системи"
@ -1797,7 +1797,7 @@ msgstr "Вихід"
#: src/pages/part/CategoryDetail.tsx:304 #: src/pages/part/CategoryDetail.tsx:304
#: src/pages/part/PartDetail.tsx:730 #: src/pages/part/PartDetail.tsx:730
msgid "Parts" msgid "Parts"
msgstr "" msgstr "Частини"
#: src/components/nav/NavigationDrawer.tsx:84 #: src/components/nav/NavigationDrawer.tsx:84
#: src/components/render/Part.tsx:30 #: src/components/render/Part.tsx:30
@ -1813,7 +1813,7 @@ msgstr "В наявності"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr ""
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Сповіщення"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "У вас немає непрочитаних сповіщень."
msgid "results" msgid "results"
msgstr "результати" msgstr "результати"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Параметри пошуку" msgstr "Параметри пошуку"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr ""
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -1991,7 +1991,7 @@ msgstr ""
#: src/tables/sales/SalesOrderLineItemTable.tsx:91 #: src/tables/sales/SalesOrderLineItemTable.tsx:91
#: src/tables/stock/LocationTypesTable.tsx:74 #: src/tables/stock/LocationTypesTable.tsx:74
msgid "Description" msgid "Description"
msgstr "" msgstr "Опис"
#: src/components/plugins/PluginDrawer.tsx:78 #: src/components/plugins/PluginDrawer.tsx:78
msgid "Author" msgid "Author"
@ -2138,12 +2138,12 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
msgid "Part" msgid "Part"
msgstr "" msgstr "Частина"
#: src/components/render/ModelType.tsx:38 #: src/components/render/ModelType.tsx:38
#: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13 #: src/pages/Index/Settings/AdminCenter/PartParameterPanel.tsx:13
@ -2171,11 +2171,11 @@ msgstr ""
#: src/tables/purchasing/SupplierPartTable.tsx:70 #: src/tables/purchasing/SupplierPartTable.tsx:70
#: src/tables/stock/StockItemTable.tsx:236 #: src/tables/stock/StockItemTable.tsx:236
msgid "Supplier Part" msgid "Supplier Part"
msgstr "" msgstr "Частина від постачальника"
#: src/components/render/ModelType.tsx:55 #: src/components/render/ModelType.tsx:55
msgid "Supplier Parts" msgid "Supplier Parts"
msgstr "" msgstr "Частини від постачальника"
#: src/components/render/ModelType.tsx:63 #: src/components/render/ModelType.tsx:63
#: src/tables/part/PartPurchaseOrdersTable.tsx:55 #: src/tables/part/PartPurchaseOrdersTable.tsx:55
@ -2190,13 +2190,13 @@ msgstr ""
#: src/components/render/ModelType.tsx:72 #: src/components/render/ModelType.tsx:72
#: src/pages/part/CategoryDetail.tsx:336 #: src/pages/part/CategoryDetail.tsx:336
msgid "Part Category" msgid "Part Category"
msgstr "" msgstr "Категорія"
#: src/components/render/ModelType.tsx:73 #: src/components/render/ModelType.tsx:73
#: src/pages/part/CategoryDetail.tsx:327 #: src/pages/part/CategoryDetail.tsx:327
#: src/pages/part/PartDetail.tsx:979 #: src/pages/part/PartDetail.tsx:979
msgid "Part Categories" msgid "Part Categories"
msgstr "" msgstr "Категорії"
#: src/components/render/ModelType.tsx:81 #: src/components/render/ModelType.tsx:81
#: src/forms/BuildForms.tsx:347 #: src/forms/BuildForms.tsx:347
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "" msgstr ""
@ -2309,7 +2309,7 @@ msgstr ""
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "" msgstr ""
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Адреса" msgstr "Адреса"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Адреси" msgstr "Адреси"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Контакт" msgstr "Контакт"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Контакти" msgstr "Контакти"
@ -2512,7 +2512,7 @@ msgstr ""
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Серійний номер"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "" msgstr ""
@ -3800,8 +3800,8 @@ msgstr ""
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "" msgstr ""
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "" msgstr ""
@ -4913,7 +4913,7 @@ msgstr ""
#: src/pages/Index/Settings/AdminCenter/Index.tsx:169 #: src/pages/Index/Settings/AdminCenter/Index.tsx:169
#: src/pages/part/CategoryDetail.tsx:294 #: src/pages/part/CategoryDetail.tsx:294
msgid "Part Parameters" msgid "Part Parameters"
msgstr "" msgstr "Параметри частини"
#: src/pages/Index/Settings/AdminCenter/Index.tsx:170 #: src/pages/Index/Settings/AdminCenter/Index.tsx:170
#~ msgid "Location types" #~ msgid "Location types"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "" msgstr ""
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "" msgstr ""
@ -5520,23 +5520,23 @@ msgstr ""
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5547,9 +5547,9 @@ msgstr ""
#: src/tables/purchasing/PurchaseOrderTable.tsx:118 #: src/tables/purchasing/PurchaseOrderTable.tsx:118
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:36 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:36
msgid "Supplier" msgid "Supplier"
msgstr "" msgstr "Постачальник"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr ""
msgid "Manufacturer" msgid "Manufacturer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr ""
msgid "Customer" msgid "Customer"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr ""
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "" msgstr ""
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "" msgstr ""
@ -5649,7 +5649,7 @@ msgstr ""
#: src/pages/part/PartSupplierDetail.tsx:15 #: src/pages/part/PartSupplierDetail.tsx:15
#: src/pages/purchasing/PurchasingIndex.tsx:32 #: src/pages/purchasing/PurchasingIndex.tsx:32
msgid "Suppliers" msgid "Suppliers"
msgstr "" msgstr "Постачальники"
#: src/pages/company/ManufacturerPartDetail.tsx:205 #: src/pages/company/ManufacturerPartDetail.tsx:205
#: src/tables/purchasing/ManufacturerPartTable.tsx:86 #: src/tables/purchasing/ManufacturerPartTable.tsx:86
@ -5678,12 +5678,12 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:103 #: src/pages/company/SupplierPartDetail.tsx:103
#: src/tables/part/RelatedPartTable.tsx:78 #: src/tables/part/RelatedPartTable.tsx:78
msgid "Part Description" msgid "Part Description"
msgstr "" msgstr "Опис частини"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "" msgstr ""
@ -5752,23 +5752,23 @@ msgstr ""
#: src/tables/settings/ErrorTable.tsx:63 #: src/tables/settings/ErrorTable.tsx:63
#: src/tables/settings/ErrorTable.tsx:108 #: src/tables/settings/ErrorTable.tsx:108
msgid "Path" msgid "Path"
msgstr "" msgstr "Шлях"
#: src/pages/part/CategoryDetail.tsx:114 #: src/pages/part/CategoryDetail.tsx:114
msgid "Parent Category" msgid "Parent Category"
msgstr "" msgstr "Батьківська категорія"
#: src/pages/part/CategoryDetail.tsx:137 #: src/pages/part/CategoryDetail.tsx:137
#: src/pages/part/CategoryDetail.tsx:259 #: src/pages/part/CategoryDetail.tsx:259
msgid "Subcategories" msgid "Subcategories"
msgstr "" msgstr "Підкатегорії"
#: src/pages/part/CategoryDetail.tsx:144 #: src/pages/part/CategoryDetail.tsx:144
#: src/pages/stock/LocationDetail.tsx:137 #: src/pages/stock/LocationDetail.tsx:137
#: src/tables/part/PartCategoryTable.tsx:85 #: src/tables/part/PartCategoryTable.tsx:85
#: src/tables/stock/StockLocationTable.tsx:49 #: src/tables/stock/StockLocationTable.tsx:49
msgid "Structural" msgid "Structural"
msgstr "" msgstr "Структурна"
#: src/pages/part/CategoryDetail.tsx:150 #: src/pages/part/CategoryDetail.tsx:150
msgid "Parent default location" msgid "Parent default location"
@ -5780,7 +5780,7 @@ msgstr ""
#: src/pages/part/CategoryDetail.tsx:168 #: src/pages/part/CategoryDetail.tsx:168
msgid "Top level part category" msgid "Top level part category"
msgstr "" msgstr "Коренева категорія"
#: src/pages/part/CategoryDetail.tsx:178 #: src/pages/part/CategoryDetail.tsx:178
#: src/pages/part/CategoryDetail.tsx:236 #: src/pages/part/CategoryDetail.tsx:236
@ -5856,7 +5856,7 @@ msgstr ""
#: src/tables/notifications/NotificationTable.tsx:32 #: src/tables/notifications/NotificationTable.tsx:32
#: src/tables/part/PartCategoryTemplateTable.tsx:67 #: src/tables/part/PartCategoryTemplateTable.tsx:67
msgid "Category" msgid "Category"
msgstr "" msgstr "Категорія"
#: src/pages/part/PartDetail.tsx:211 #: src/pages/part/PartDetail.tsx:211
msgid "Default Location" msgid "Default Location"
@ -5996,7 +5996,7 @@ msgstr ""
#: src/pages/part/PartDetail.tsx:413 #: src/pages/part/PartDetail.tsx:413
msgid "Default Supplier" msgid "Default Supplier"
msgstr "" msgstr "Типовий постачальник"
#: src/pages/part/PartDetail.tsx:424 #: src/pages/part/PartDetail.tsx:424
#: src/pages/part/pricing/BomPricingPanel.tsx:113 #: src/pages/part/pricing/BomPricingPanel.tsx:113
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "" msgstr ""
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "" msgstr ""
@ -6252,6 +6252,7 @@ msgstr ""
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6265,7 +6266,7 @@ msgstr ""
#: src/tables/build/BuildLineTable.tsx:303 #: src/tables/build/BuildLineTable.tsx:303
#: src/tables/part/PartTable.tsx:204 #: src/tables/part/PartTable.tsx:204
msgid "Component" msgid "Component"
msgstr "" msgstr "Компонент"
#: src/pages/part/pricing/BomPricingPanel.tsx:112 #: src/pages/part/pricing/BomPricingPanel.tsx:112
#~ msgid "Minimum Total Price" #~ msgid "Minimum Total Price"
@ -6295,7 +6296,7 @@ msgstr ""
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "" msgstr ""
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "" msgstr ""
@ -7496,7 +7497,7 @@ msgstr "Біл матеріалів не можна редагувати, том
#: src/tables/part/PartTable.tsx:192 #: src/tables/part/PartTable.tsx:192
#: src/tables/stock/StockItemTable.tsx:317 #: src/tables/stock/StockItemTable.tsx:317
msgid "Assembly" msgid "Assembly"
msgstr "" msgstr "Збірка"
#: src/tables/bom/UsedInTable.tsx:86 #: src/tables/bom/UsedInTable.tsx:86
msgid "Show active assemblies" msgid "Show active assemblies"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8253,7 +8254,7 @@ msgstr ""
#: src/tables/part/PartCategoryTable.tsx:80 #: src/tables/part/PartCategoryTable.tsx:80
#: src/tables/part/PartTable.tsx:198 #: src/tables/part/PartTable.tsx:198
msgid "Include Subcategories" msgid "Include Subcategories"
msgstr "" msgstr "Включити підкатегорії"
#: src/tables/part/PartCategoryTable.tsx:81 #: src/tables/part/PartCategoryTable.tsx:81
msgid "Include subcategories in results" msgid "Include subcategories in results"
@ -8261,7 +8262,7 @@ msgstr ""
#: src/tables/part/PartCategoryTable.tsx:86 #: src/tables/part/PartCategoryTable.tsx:86
msgid "Show structural categories" msgid "Show structural categories"
msgstr "" msgstr "Показати структурні категорії"
#: src/tables/part/PartCategoryTable.tsx:91 #: src/tables/part/PartCategoryTable.tsx:91
msgid "Show categories to which the user is subscribed" msgid "Show categories to which the user is subscribed"
@ -8269,28 +8270,28 @@ msgstr ""
#: src/tables/part/PartCategoryTable.tsx:100 #: src/tables/part/PartCategoryTable.tsx:100
msgid "New Part Category" msgid "New Part Category"
msgstr "" msgstr "Нова категорія"
#: src/tables/part/PartCategoryTable.tsx:129 #: src/tables/part/PartCategoryTable.tsx:129
msgid "Add Part Category" msgid "Add Part Category"
msgstr "" msgstr "Додати категорію"
#: src/tables/part/PartCategoryTemplateTable.tsx:38 #: src/tables/part/PartCategoryTemplateTable.tsx:38
#: src/tables/part/PartCategoryTemplateTable.tsx:132 #: src/tables/part/PartCategoryTemplateTable.tsx:132
msgid "Add Category Parameter" msgid "Add Category Parameter"
msgstr "" msgstr "Додати параметр категорії"
#: src/tables/part/PartCategoryTemplateTable.tsx:46 #: src/tables/part/PartCategoryTemplateTable.tsx:46
msgid "Edit Category Parameter" msgid "Edit Category Parameter"
msgstr "" msgstr "Змінити параметр категорії"
#: src/tables/part/PartCategoryTemplateTable.tsx:54 #: src/tables/part/PartCategoryTemplateTable.tsx:54
msgid "Delete Category Parameter" msgid "Delete Category Parameter"
msgstr "" msgstr "Видалити параметр категорії"
#: src/tables/part/PartCategoryTemplateTable.tsx:76 #: src/tables/part/PartCategoryTemplateTable.tsx:76
msgid "Parameter Template" msgid "Parameter Template"
msgstr "" msgstr "Шаблон параметра"
#: src/tables/part/PartCategoryTemplateTable.tsx:93 #: src/tables/part/PartCategoryTemplateTable.tsx:93
#~ msgid "[{0}]" #~ msgid "[{0}]"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "" msgstr ""
@ -8398,7 +8399,7 @@ msgstr ""
#: src/tables/part/PartTable.tsx:205 #: src/tables/part/PartTable.tsx:205
msgid "Filter by component attribute" msgid "Filter by component attribute"
msgstr "" msgstr "Фільтрувати за атрибутом \"Компонент\""
#: src/tables/part/PartTable.tsx:211 #: src/tables/part/PartTable.tsx:211
msgid "Filter by testable attribute" msgid "Filter by testable attribute"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "" msgstr "Код постачальника"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "" msgstr "Посилання на постачальника"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "" msgstr ""
@ -8939,7 +8940,7 @@ msgstr ""
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "" msgstr ""
@ -8973,11 +8974,11 @@ msgstr ""
#: src/tables/purchasing/SupplierPartTable.tsx:202 #: src/tables/purchasing/SupplierPartTable.tsx:202
msgid "Active Supplier" msgid "Active Supplier"
msgstr "" msgstr "Активний постачальник"
#: src/tables/purchasing/SupplierPartTable.tsx:203 #: src/tables/purchasing/SupplierPartTable.tsx:203
msgid "Show active suppliers" msgid "Show active suppliers"
msgstr "" msgstr "Показати активних постачальників"
#: src/tables/purchasing/SupplierPartTable.tsx:205 #: src/tables/purchasing/SupplierPartTable.tsx:205
#~ msgid "Supplier part deleted" #~ msgid "Supplier part deleted"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: vi\n" "Language: vi\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "Phiên bản" msgstr "Phiên bản"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "Phiên bản API" msgstr "Phiên bản API"
@ -1144,10 +1144,6 @@ msgstr "Phiên bản API"
msgid "Plugins" msgid "Plugins"
msgstr "Plugins" msgstr "Plugins"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "" msgstr ""
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} icons" msgstr "{0} icons"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "Tìm kiếm" msgstr "Tìm kiếm"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "Đang tải" msgstr "Đang tải"
@ -1374,7 +1374,7 @@ msgstr "Dữ liệu đã được nhập thành công"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "Đóng" msgstr "Đóng"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "Thông tin này chỉ khả dụng với nhân viên" msgstr "Thông tin này chỉ khả dụng với nhân viên"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "Bảng điều khiển này là dự kiến." msgstr "Bảng điều khiển này là dự kiến."
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "Thông tin phiên bản" msgstr "Phiên bản InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "Phiên bản phát triển"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "Mới nhất"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "Có bản cập nhật mới"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "Phiên bản InvenTree"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "Commit Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "Ngày commit"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "Nhánh commit"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Phiên bản Python" msgstr "Phiên bản Python"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Phiên bản Django" msgstr "Phiên bản Django"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "Commit Hash"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "Ngày commit"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "Nhánh commit"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "Thông tin phiên bản"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "Liên kết" msgstr "Liên kết"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "Tài liệu" msgstr "Tài liệu"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "Đóng góp" msgstr "Đóng góp"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "Ứng dụng di động"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "Gửi báo cáo lỗi"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "Ứng dụng di động"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "Gửi báo cáo lỗi"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "Sao chép thông tin phiên bản" msgstr "Sao chép thông tin phiên bản"
@ -1612,6 +1600,18 @@ msgstr "Sao chép thông tin phiên bản"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "Phiên bản phát triển"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "Mới nhất"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "Có bản cập nhật mới"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "Không có văn bản giấy phép nào có sẵn" msgstr "Không có văn bản giấy phép nào có sẵn"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "Cài đặt" msgstr "Cài đặt"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "Cài đặt tài khoản" msgstr "Cài đặt tài khoản"
@ -1745,8 +1745,8 @@ msgstr "Cài đặt tài khoản"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "Thiết lập hệ thống" msgstr "Thiết lập hệ thống"
@ -1813,7 +1813,7 @@ msgstr "Kho hàng"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "Bán hàng"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "Thông báo"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "Bạn chưa có thông báo mới."
msgid "results" msgid "results"
msgstr "kết quả" msgstr "kết quả"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "Nhập văn bản tìm kiếm" msgstr "Nhập văn bản tìm kiếm"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "Tùy chọn tìm kiếm" msgstr "Tùy chọn tìm kiếm"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "Tìm kiếm regex" msgstr "Tìm kiếm regex"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "Tìm phù hợp toàn bộ từ" msgstr "Tìm phù hợp toàn bộ từ"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "Lỗi trong quá trình truy vấn tìm kiếm"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "Lỗi trong quá trình truy vấn tìm kiếm"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "Không có kết quả nào được tìm thấy với truy vấn tìm kiếm" msgstr "Không có kết quả nào được tìm thấy với truy vấn tìm kiếm"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "Model không rõ: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "Hàng trong kho" msgstr "Hàng trong kho"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "Xây dựng mặt hàng" msgstr "Xây dựng mặt hàng"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "Công ty" msgstr "Công ty"
@ -2309,7 +2309,7 @@ msgstr "Đơn đặt mua"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "Đơn đặt bán" msgstr "Đơn đặt bán"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "Đơn hàng trả lại" msgstr "Đơn hàng trả lại"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "Địa chỉ" msgstr "Địa chỉ"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "Địa chỉ" msgstr "Địa chỉ"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "Liên hệ" msgstr "Liên hệ"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "Danh bạ" msgstr "Danh bạ"
@ -2512,7 +2512,7 @@ msgstr "Lô hàng"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "Số sê-ri"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "Đóng gói" msgstr "Đóng gói"
@ -3800,8 +3800,8 @@ msgstr "SKU"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "Đã nhận" msgstr "Đã nhận"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "Đang kiểm tra trạng thái đăng nhập của bạn" msgstr "Đang kiểm tra trạng thái đăng nhập của bạn"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "Nhãn" msgstr "Nhãn"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "Báo cáo" msgstr "Báo cáo"
@ -5520,23 +5520,23 @@ msgstr "Xây dựng đơn hàng"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "Trang web" msgstr "Trang web"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "Số điện thoại" msgstr "Số điện thoại"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "Địa chỉ email" msgstr "Địa chỉ email"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "Tiền tệ mặc định" msgstr "Tiền tệ mặc định"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "Tiền tệ mặc định"
msgid "Supplier" msgid "Supplier"
msgstr "Nhà cung cấp" msgstr "Nhà cung cấp"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "Nhà cung cấp"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "Nhà sản xuất" msgstr "Nhà sản xuất"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "Nhà sản xuất"
msgid "Customer" msgid "Customer"
msgstr "Khách hàng" msgstr "Khách hàng"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "Nguyên liệu nhà sản xuất" msgstr "Nguyên liệu nhà sản xuất"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "Nguyên liệu nhà cung cấp"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "Nguyên liệu nhà cung cấp"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "Kho đã được giao" msgstr "Kho đã được giao"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "Sửa doanh nghiệp" msgstr "Sửa doanh nghiệp"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "Xóa doanh nghiệp" msgstr "Xóa doanh nghiệp"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "Chức năng doanh nghiệp" msgstr "Chức năng doanh nghiệp"
@ -5682,8 +5682,8 @@ msgstr "Mô tả sản phẩm"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "Số lượng gói" msgstr "Số lượng gói"
@ -6111,7 +6111,7 @@ msgstr ""
msgid "Part Actions" msgid "Part Actions"
msgstr "Thao tác" msgstr "Thao tác"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "Chọn lịch sử nguyên liệu" msgstr "Chọn lịch sử nguyên liệu"
@ -6252,6 +6252,7 @@ msgstr "Nhà sản xuất"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "Giá cao nhất"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "Những mục hoàn thành" msgstr "Những mục hoàn thành"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "Đích đến" msgstr "Đích đến"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "Thêm hạng mục" msgstr "Thêm hạng mục"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "Sửa hạng mục" msgstr "Sửa hạng mục"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr ""
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "Tổng số lượng" msgstr "Tổng số lượng"
@ -8908,28 +8909,28 @@ msgstr ""
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "Mã nhà cung cấp" msgstr "Mã nhà cung cấp"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "Liên kết nhà cung cấp" msgstr "Liên kết nhà cung cấp"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "Mã nhà sản xuất" msgstr "Mã nhà sản xuất"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "Nhận hạng mục" msgstr "Nhận hạng mục"
@ -8939,7 +8940,7 @@ msgstr "Nhận hạng mục"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "Nhận hàng hóa" msgstr "Nhận hàng hóa"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "版本" msgstr "版本"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API 版本" msgstr "API 版本"
@ -1144,10 +1144,6 @@ msgstr "API 版本"
msgid "Plugins" msgid "Plugins"
msgstr "插件" msgstr "插件"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "已启用" msgstr "已启用"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} 个图标" msgstr "{0} 个图标"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "搜索" msgstr "搜索"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "正在加载" msgstr "正在加载"
@ -1374,7 +1374,7 @@ msgstr "数据已成功导入"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "关闭" msgstr "关闭"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "此信息仅供员工使用" msgstr "此信息仅供员工使用"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "此面板是一个占位符。" msgstr "此面板是一个占位符。"
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "版本信息" msgstr "InvenTree 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "开发版"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "已是最新版本"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "有可用更新"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "提交哈希值"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "提交日期"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "提交分支"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python 版本" msgstr "Python 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django版本" msgstr "Django版本"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "提交哈希值"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "提交日期"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "提交分支"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "版本信息"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "链接" msgstr "链接"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "文档" msgstr "文档"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "致谢" msgstr "致谢"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "手机 App"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "提交问题报告"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "手机 App"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "提交问题报告"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "复制版本信息" msgstr "复制版本信息"
@ -1612,6 +1600,18 @@ msgstr "复制版本信息"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "开发版"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "已是最新版本"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "有可用更新"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "没有可用的许可文本" msgstr "没有可用的许可文本"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "设置" msgstr "设置"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "账户设置" msgstr "账户设置"
@ -1745,8 +1745,8 @@ msgstr "账户设置"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "系统设置" msgstr "系统设置"
@ -1813,7 +1813,7 @@ msgstr "库存"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "销售"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "通知"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "用户设置" msgstr "用户设置"
@ -1895,41 +1895,41 @@ msgstr "您没有未读通知"
msgid "results" msgid "results"
msgstr "结果" msgstr "结果"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "输入搜索文本" msgstr "输入搜索文本"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "刷新搜索结果" msgstr "刷新搜索结果"
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "搜索选项" msgstr "搜索选项"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "正则表达式搜索" msgstr "正则表达式搜索"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "全词搜索" msgstr "全词搜索"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "搜索查询时发生错误"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "搜索查询时发生错误"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "无结果" msgstr "无结果"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "没有可供搜索查询的结果" msgstr "没有可供搜索查询的结果"
@ -1967,7 +1967,7 @@ msgstr "插件信息"
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "未知模型: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "库存项" msgstr "库存项"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "构建多个项目" msgstr "构建多个项目"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "公司" msgstr "公司"
@ -2309,7 +2309,7 @@ msgstr "采购订单"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "销售订单" msgstr "销售订单"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "退货订单" msgstr "退货订单"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "地址" msgstr "地址"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "地址" msgstr "地址"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "联系人" msgstr "联系人"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "联系人" msgstr "联系人"
@ -2512,7 +2512,7 @@ msgstr "配送"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "序列号"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "包装" msgstr "包装"
@ -3800,8 +3800,8 @@ msgstr "库存单位 (SKU)"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "已接收" msgstr "已接收"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "检查您是否已经登录" msgstr "检查您是否已经登录"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "标签" msgstr "标签"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "报告" msgstr "报告"
@ -5520,23 +5520,23 @@ msgstr "生产订单"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "网站" msgstr "网站"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "电话号码" msgstr "电话号码"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "电子邮件地址" msgstr "电子邮件地址"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "默认货币单位" msgstr "默认货币单位"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "默认货币单位"
msgid "Supplier" msgid "Supplier"
msgstr "供应商" msgstr "供应商"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "供应商"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "制造商" msgstr "制造商"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "制造商"
msgid "Customer" msgid "Customer"
msgstr "客户" msgstr "客户"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "公司详细信息" msgstr "公司详细信息"
@ -5580,32 +5580,32 @@ msgstr "公司详细信息"
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "制成零件" msgstr "制成零件"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "已提供的零件"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "已提供的零件"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "已分配的库存" msgstr "已分配的库存"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "编辑公司" msgstr "编辑公司"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "删除该公司" msgstr "删除该公司"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "公司操作" msgstr "公司操作"
@ -5682,8 +5682,8 @@ msgstr "零件描述"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "包装数量" msgstr "包装数量"
@ -6111,7 +6111,7 @@ msgstr "订单库存"
msgid "Part Actions" msgid "Part Actions"
msgstr "零件选项" msgstr "零件选项"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "选择零件版本" msgstr "选择零件版本"
@ -6252,6 +6252,7 @@ msgstr "制造商"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "最高价格"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "已完成行项目" msgstr "已完成行项目"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "目的地" msgstr "目的地"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "添加行项目" msgstr "添加行项目"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "编辑行项目" msgstr "编辑行项目"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "删除零件参数模板"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "总数量" msgstr "总数量"
@ -8908,28 +8909,28 @@ msgstr "删除参数"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "导入行项目" msgstr "导入行项目"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "供应商代码" msgstr "供应商代码"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "供应商链接" msgstr "供应商链接"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "制造商编号" msgstr "制造商编号"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "接收这行项目" msgstr "接收这行项目"
@ -8939,7 +8940,7 @@ msgstr "接收这行项目"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "收到项目" msgstr "收到项目"

View File

@ -8,7 +8,7 @@ msgstr ""
"Language: zh\n" "Language: zh\n"
"Project-Id-Version: inventree\n" "Project-Id-Version: inventree\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2025-02-01 11:48\n" "PO-Revision-Date: 2025-02-11 00:40\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: Chinese Traditional\n" "Language-Team: Chinese Traditional\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
@ -92,7 +92,7 @@ msgstr ""
#: src/components/importer/ImportDataSelector.tsx:188 #: src/components/importer/ImportDataSelector.tsx:188
#: src/components/importer/ImporterColumnSelector.tsx:216 #: src/components/importer/ImporterColumnSelector.tsx:216
#: src/components/modals/LicenseModal.tsx:87 #: src/components/modals/LicenseModal.tsx:87
#: src/components/nav/SearchDrawer.tsx:456 #: src/components/nav/SearchDrawer.tsx:463
#: src/components/render/ModelType.tsx:283 #: src/components/render/ModelType.tsx:283
#: src/pages/Auth/ChangePassword.tsx:50 #: src/pages/Auth/ChangePassword.tsx:50
#: src/pages/ErrorPage.tsx:11 #: src/pages/ErrorPage.tsx:11
@ -1132,7 +1132,7 @@ msgid "Version"
msgstr "版本" msgstr "版本"
#: src/components/forms/InstanceOptions.tsx:130 #: src/components/forms/InstanceOptions.tsx:130
#: src/components/modals/AboutInvenTreeModal.tsx:138 #: src/components/modals/AboutInvenTreeModal.tsx:106
#: src/components/modals/ServerInfoModal.tsx:37 #: src/components/modals/ServerInfoModal.tsx:37
msgid "API Version" msgid "API Version"
msgstr "API 版本" msgstr "API 版本"
@ -1144,10 +1144,6 @@ msgstr "API 版本"
msgid "Plugins" msgid "Plugins"
msgstr "插件" msgstr "插件"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:137 #: src/components/forms/InstanceOptions.tsx:137
#: src/tables/part/PartTestTemplateTable.tsx:116 #: src/tables/part/PartTestTemplateTable.tsx:116
#: src/tables/settings/TemplateTable.tsx:248 #: src/tables/settings/TemplateTable.tsx:248
@ -1156,6 +1152,10 @@ msgstr ""
msgid "Enabled" msgid "Enabled"
msgstr "已啓用" msgstr "已啓用"
#: src/components/forms/InstanceOptions.tsx:137
msgid "Disabled"
msgstr ""
#: src/components/forms/InstanceOptions.tsx:143 #: src/components/forms/InstanceOptions.tsx:143
msgid "Worker" msgid "Worker"
msgstr "" msgstr ""
@ -1196,13 +1196,13 @@ msgid "{0} icons"
msgstr "{0} 個圖標" msgstr "{0} 個圖標"
#: src/components/forms/fields/RelatedModelField.tsx:320 #: src/components/forms/fields/RelatedModelField.tsx:320
#: src/pages/Index/Settings/UserSettings.tsx:65 #: src/pages/Index/Settings/UserSettings.tsx:66
#: src/tables/Search.tsx:23 #: src/tables/Search.tsx:23
msgid "Search" msgid "Search"
msgstr "搜尋" msgstr "搜尋"
#: src/components/forms/fields/RelatedModelField.tsx:321 #: src/components/forms/fields/RelatedModelField.tsx:321
#: src/components/modals/AboutInvenTreeModal.tsx:76 #: src/components/modals/AboutInvenTreeModal.tsx:78
#: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316 #: src/pages/Index/Settings/AccountSettings/SecurityContent.tsx:316
msgid "Loading" msgid "Loading"
msgstr "正在加載" msgstr "正在加載"
@ -1374,7 +1374,7 @@ msgstr "數據已成功導入"
#: src/components/importer/ImporterDrawer.tsx:112 #: src/components/importer/ImporterDrawer.tsx:112
#: src/components/importer/ImporterDrawer.tsx:121 #: src/components/importer/ImporterDrawer.tsx:121
#: src/components/modals/AboutInvenTreeModal.tsx:186 #: src/components/modals/AboutInvenTreeModal.tsx:182
#: src/components/modals/ServerInfoModal.tsx:132 #: src/components/modals/ServerInfoModal.tsx:132
msgid "Close" msgid "Close"
msgstr "關閉" msgstr "關閉"
@ -1509,7 +1509,7 @@ msgid "Select language"
msgstr "" msgstr ""
#: src/components/items/OnlyStaff.tsx:9 #: src/components/items/OnlyStaff.tsx:9
#: src/components/modals/AboutInvenTreeModal.tsx:43 #: src/components/modals/AboutInvenTreeModal.tsx:45
msgid "This information is only available for staff users" msgid "This information is only available for staff users"
msgstr "此信息僅供員工使用" msgstr "此信息僅供員工使用"
@ -1525,85 +1525,73 @@ msgstr "PLH"
msgid "This panel is a placeholder." msgid "This panel is a placeholder."
msgstr "此面板是一個佔位符。" msgstr "此面板是一個佔位符。"
#: src/components/modals/AboutInvenTreeModal.tsx:95 #: src/components/modals/AboutInvenTreeModal.tsx:100
msgid "Version Information" msgid "InvenTree Version"
msgstr "版本信息" msgstr "InvenTree 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:99
msgid "Development Version"
msgstr "開發版"
#: src/components/modals/AboutInvenTreeModal.tsx:103
msgid "Up to Date"
msgstr "已是最新版本"
#: src/components/modals/AboutInvenTreeModal.tsx:103 #: src/components/modals/AboutInvenTreeModal.tsx:103
#~ msgid "Your InvenTree version status is" #~ msgid "Your InvenTree version status is"
#~ msgstr "Your InvenTree version status is" #~ msgstr "Your InvenTree version status is"
#: src/components/modals/AboutInvenTreeModal.tsx:107 #: src/components/modals/AboutInvenTreeModal.tsx:112
msgid "Update Available"
msgstr "有可用更新"
#: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "InvenTree Version"
msgstr "InvenTree 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:123
msgid "Commit Hash"
msgstr "提交哈希值"
#: src/components/modals/AboutInvenTreeModal.tsx:128
msgid "Commit Date"
msgstr "提交日期"
#: src/components/modals/AboutInvenTreeModal.tsx:133
msgid "Commit Branch"
msgstr "提交分支"
#: src/components/modals/AboutInvenTreeModal.tsx:144
msgid "Python Version" msgid "Python Version"
msgstr "Python 版本" msgstr "Python 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:149 #: src/components/modals/AboutInvenTreeModal.tsx:117
msgid "Django Version" msgid "Django Version"
msgstr "Django 版本" msgstr "Django 版本"
#: src/components/modals/AboutInvenTreeModal.tsx:160 #: src/components/modals/AboutInvenTreeModal.tsx:126
msgid "Commit Hash"
msgstr "提交哈希值"
#: src/components/modals/AboutInvenTreeModal.tsx:131
msgid "Commit Date"
msgstr "提交日期"
#: src/components/modals/AboutInvenTreeModal.tsx:136
msgid "Commit Branch"
msgstr "提交分支"
#: src/components/modals/AboutInvenTreeModal.tsx:147
msgid "Version Information"
msgstr "版本信息"
#: src/components/modals/AboutInvenTreeModal.tsx:156
msgid "Links" msgid "Links"
msgstr "鏈接" msgstr "鏈接"
#: src/components/modals/AboutInvenTreeModal.tsx:166 #: src/components/modals/AboutInvenTreeModal.tsx:162
#: src/components/nav/NavigationDrawer.tsx:205 #: src/components/nav/NavigationDrawer.tsx:205
#: src/defaults/actions.tsx:32 #: src/defaults/actions.tsx:32
msgid "Documentation" msgid "Documentation"
msgstr "文檔" msgstr "文檔"
#: src/components/modals/AboutInvenTreeModal.tsx:167 #: src/components/modals/AboutInvenTreeModal.tsx:163
msgid "Source Code" msgid "Source Code"
msgstr "" msgstr ""
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:164
msgid "Credits" msgid "Credits"
msgstr "致謝" msgstr "致謝"
#: src/components/modals/AboutInvenTreeModal.tsx:165
msgid "Mobile App"
msgstr "手機 App"
#: src/components/modals/AboutInvenTreeModal.tsx:166
msgid "Submit Bug Report"
msgstr "提交問題報告"
#: src/components/modals/AboutInvenTreeModal.tsx:168 #: src/components/modals/AboutInvenTreeModal.tsx:168
#~ msgid "InvenTree Documentation" #~ msgid "InvenTree Documentation"
#~ msgstr "InvenTree Documentation" #~ msgstr "InvenTree Documentation"
#: src/components/modals/AboutInvenTreeModal.tsx:169
msgid "Mobile App"
msgstr "手機 App"
#: src/components/modals/AboutInvenTreeModal.tsx:169 #: src/components/modals/AboutInvenTreeModal.tsx:169
#~ msgid "View Code on GitHub" #~ msgid "View Code on GitHub"
#~ msgstr "View Code on GitHub" #~ msgstr "View Code on GitHub"
#: src/components/modals/AboutInvenTreeModal.tsx:170 #: src/components/modals/AboutInvenTreeModal.tsx:175
msgid "Submit Bug Report"
msgstr "提交問題報告"
#: src/components/modals/AboutInvenTreeModal.tsx:179
msgid "Copy version information" msgid "Copy version information"
msgstr "複製版本信息" msgstr "複製版本信息"
@ -1612,6 +1600,18 @@ msgstr "複製版本信息"
#~ msgid "Dismiss" #~ msgid "Dismiss"
#~ msgstr "Dismiss" #~ msgstr "Dismiss"
#: src/components/modals/AboutInvenTreeModal.tsx:192
msgid "Development Version"
msgstr "開發版"
#: src/components/modals/AboutInvenTreeModal.tsx:194
msgid "Up to Date"
msgstr "已是最新版本"
#: src/components/modals/AboutInvenTreeModal.tsx:196
msgid "Update Available"
msgstr "有可用更新"
#: src/components/modals/LicenseModal.tsx:40 #: src/components/modals/LicenseModal.tsx:40
msgid "No license text available" msgid "No license text available"
msgstr "沒有可用的許可文本" msgstr "沒有可用的許可文本"
@ -1733,7 +1733,7 @@ msgid "Settings"
msgstr "設置" msgstr "設置"
#: src/components/nav/MainMenu.tsx:59 #: src/components/nav/MainMenu.tsx:59
#: src/pages/Index/Settings/UserSettings.tsx:122 #: src/pages/Index/Settings/UserSettings.tsx:124
msgid "Account Settings" msgid "Account Settings"
msgstr "賬户設置" msgstr "賬户設置"
@ -1745,8 +1745,8 @@ msgstr "賬户設置"
#: src/components/nav/MainMenu.tsx:67 #: src/components/nav/MainMenu.tsx:67
#: src/components/nav/NavigationDrawer.tsx:141 #: src/components/nav/NavigationDrawer.tsx:141
#: src/components/nav/SettingsHeader.tsx:41 #: src/components/nav/SettingsHeader.tsx:41
#: src/pages/Index/Settings/SystemSettings.tsx:305 #: src/pages/Index/Settings/SystemSettings.tsx:306
#: src/pages/Index/Settings/SystemSettings.tsx:310 #: src/pages/Index/Settings/SystemSettings.tsx:311
msgid "System Settings" msgid "System Settings"
msgstr "系統設置" msgstr "系統設置"
@ -1813,7 +1813,7 @@ msgstr "庫存"
#: src/components/nav/NavigationDrawer.tsx:91 #: src/components/nav/NavigationDrawer.tsx:91
#: src/defaults/links.tsx:15 #: src/defaults/links.tsx:15
#: src/pages/build/BuildDetail.tsx:546 #: src/pages/build/BuildDetail.tsx:545
#: src/pages/build/BuildIndex.tsx:36 #: src/pages/build/BuildIndex.tsx:36
msgid "Manufacturing" msgid "Manufacturing"
msgstr "" msgstr ""
@ -1842,7 +1842,7 @@ msgstr "銷售"
#: src/components/nav/NavigationDrawer.tsx:129 #: src/components/nav/NavigationDrawer.tsx:129
#: src/components/nav/NotificationDrawer.tsx:179 #: src/components/nav/NotificationDrawer.tsx:179
#: src/pages/Index/Settings/SystemSettings.tsx:109 #: src/pages/Index/Settings/SystemSettings.tsx:109
#: src/pages/Index/Settings/UserSettings.tsx:95 #: src/pages/Index/Settings/UserSettings.tsx:97
#: src/pages/Notifications.tsx:66 #: src/pages/Notifications.tsx:66
#: src/pages/Notifications.tsx:158 #: src/pages/Notifications.tsx:158
msgid "Notifications" msgid "Notifications"
@ -1850,7 +1850,7 @@ msgstr "通知"
#: src/components/nav/NavigationDrawer.tsx:135 #: src/components/nav/NavigationDrawer.tsx:135
#: src/components/nav/SettingsHeader.tsx:40 #: src/components/nav/SettingsHeader.tsx:40
#: src/pages/Index/Settings/UserSettings.tsx:118 #: src/pages/Index/Settings/UserSettings.tsx:120
msgid "User Settings" msgid "User Settings"
msgstr "" msgstr ""
@ -1895,41 +1895,41 @@ msgstr "您沒有未讀通知"
msgid "results" msgid "results"
msgstr "結果" msgstr "結果"
#: src/components/nav/SearchDrawer.tsx:378 #: src/components/nav/SearchDrawer.tsx:385
msgid "Enter search text" msgid "Enter search text"
msgstr "輸入搜索文本" msgstr "輸入搜索文本"
#: src/components/nav/SearchDrawer.tsx:389 #: src/components/nav/SearchDrawer.tsx:396
msgid "Refresh search results" msgid "Refresh search results"
msgstr "" msgstr ""
#: src/components/nav/SearchDrawer.tsx:400
#: src/components/nav/SearchDrawer.tsx:407 #: src/components/nav/SearchDrawer.tsx:407
#: src/components/nav/SearchDrawer.tsx:414
msgid "Search Options" msgid "Search Options"
msgstr "搜索選項" msgstr "搜索選項"
#: src/components/nav/SearchDrawer.tsx:410 #: src/components/nav/SearchDrawer.tsx:417
msgid "Regex search" msgid "Regex search"
msgstr "正則表達式搜索" msgstr "正則表達式搜索"
#: src/components/nav/SearchDrawer.tsx:419 #: src/components/nav/SearchDrawer.tsx:426
msgid "Whole word search" msgid "Whole word search"
msgstr "全詞搜索" msgstr "全詞搜索"
#: src/components/nav/SearchDrawer.tsx:459
msgid "An error occurred during search query"
msgstr "搜索查詢時發生錯誤"
#: src/components/nav/SearchDrawer.tsx:462 #: src/components/nav/SearchDrawer.tsx:462
#~ msgid "No results" #~ msgid "No results"
#~ msgstr "No results" #~ msgstr "No results"
#: src/components/nav/SearchDrawer.tsx:470 #: src/components/nav/SearchDrawer.tsx:466
msgid "An error occurred during search query"
msgstr "搜索查詢時發生錯誤"
#: src/components/nav/SearchDrawer.tsx:477
#: src/tables/part/PartTestTemplateTable.tsx:81 #: src/tables/part/PartTestTemplateTable.tsx:81
msgid "No Results" msgid "No Results"
msgstr "無結果" msgstr "無結果"
#: src/components/nav/SearchDrawer.tsx:473 #: src/components/nav/SearchDrawer.tsx:480
msgid "No results available for search query" msgid "No results available for search query"
msgstr "沒有可供搜索查詢的結果" msgstr "沒有可供搜索查詢的結果"
@ -1967,7 +1967,7 @@ msgstr ""
#: src/components/plugins/PluginDrawer.tsx:73 #: src/components/plugins/PluginDrawer.tsx:73
#: src/forms/selectionListFields.tsx:103 #: src/forms/selectionListFields.tsx:103
#: src/pages/build/BuildDetail.tsx:128 #: src/pages/build/BuildDetail.tsx:128
#: src/pages/company/CompanyDetail.tsx:93 #: src/pages/company/CompanyDetail.tsx:94
#: src/pages/company/ManufacturerPartDetail.tsx:92 #: src/pages/company/ManufacturerPartDetail.tsx:92
#: src/pages/company/ManufacturerPartDetail.tsx:119 #: src/pages/company/ManufacturerPartDetail.tsx:119
#: src/pages/company/SupplierPartDetail.tsx:144 #: src/pages/company/SupplierPartDetail.tsx:144
@ -2138,7 +2138,7 @@ msgstr "未知模型: {model}"
#: src/tables/build/BuildLineTable.tsx:71 #: src/tables/build/BuildLineTable.tsx:71
#: src/tables/part/PartTable.tsx:32 #: src/tables/part/PartTable.tsx:32
#: src/tables/part/RelatedPartTable.tsx:49 #: src/tables/part/RelatedPartTable.tsx:49
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:130 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:129
#: src/tables/sales/ReturnOrderLineItemTable.tsx:100 #: src/tables/sales/ReturnOrderLineItemTable.tsx:100
#: src/tables/sales/SalesOrderAllocationTable.tsx:118 #: src/tables/sales/SalesOrderAllocationTable.tsx:118
#: src/tables/stock/StockTrackingTable.tsx:88 #: src/tables/stock/StockTrackingTable.tsx:88
@ -2210,7 +2210,7 @@ msgid "Stock Item"
msgstr "庫存項" msgstr "庫存項"
#: src/components/render/ModelType.tsx:82 #: src/components/render/ModelType.tsx:82
#: src/pages/company/CompanyDetail.tsx:205 #: src/pages/company/CompanyDetail.tsx:206
#: src/pages/part/CategoryDetail.tsx:279 #: src/pages/part/CategoryDetail.tsx:279
#: src/pages/part/PartStocktakeDetail.tsx:115 #: src/pages/part/PartStocktakeDetail.tsx:115
#: src/pages/stock/LocationDetail.tsx:124 #: src/pages/stock/LocationDetail.tsx:124
@ -2272,7 +2272,7 @@ msgid "Build Items"
msgstr "構建多個項目" msgstr "構建多個項目"
#: src/components/render/ModelType.tsx:134 #: src/components/render/ModelType.tsx:134
#: src/pages/company/CompanyDetail.tsx:326 #: src/pages/company/CompanyDetail.tsx:327
msgid "Company" msgid "Company"
msgstr "公司" msgstr "公司"
@ -2309,7 +2309,7 @@ msgstr "採購訂單"
#: src/components/render/ModelType.tsx:152 #: src/components/render/ModelType.tsx:152
#: src/pages/Index/Settings/SystemSettings.tsx:248 #: src/pages/Index/Settings/SystemSettings.tsx:248
#: src/pages/company/CompanyDetail.tsx:198 #: src/pages/company/CompanyDetail.tsx:199
#: src/pages/company/SupplierPartDetail.tsx:266 #: src/pages/company/SupplierPartDetail.tsx:266
#: src/pages/part/PartDetail.tsx:573 #: src/pages/part/PartDetail.tsx:573
#: src/pages/purchasing/PurchasingIndex.tsx:25 #: src/pages/purchasing/PurchasingIndex.tsx:25
@ -2338,8 +2338,8 @@ msgid "Sales Order"
msgstr "銷售訂單" msgstr "銷售訂單"
#: src/components/render/ModelType.tsx:167 #: src/components/render/ModelType.tsx:167
#: src/pages/Index/Settings/SystemSettings.tsx:263 #: src/pages/Index/Settings/SystemSettings.tsx:264
#: src/pages/company/CompanyDetail.tsx:218 #: src/pages/company/CompanyDetail.tsx:219
#: src/pages/part/PartDetail.tsx:585 #: src/pages/part/PartDetail.tsx:585
#: src/pages/sales/SalesIndex.tsx:26 #: src/pages/sales/SalesIndex.tsx:26
msgid "Sales Orders" msgid "Sales Orders"
@ -2361,8 +2361,8 @@ msgid "Return Order"
msgstr "退貨訂單" msgstr "退貨訂單"
#: src/components/render/ModelType.tsx:184 #: src/components/render/ModelType.tsx:184
#: src/pages/Index/Settings/SystemSettings.tsx:279 #: src/pages/Index/Settings/SystemSettings.tsx:280
#: src/pages/company/CompanyDetail.tsx:225 #: src/pages/company/CompanyDetail.tsx:226
#: src/pages/part/PartDetail.tsx:592 #: src/pages/part/PartDetail.tsx:592
#: src/pages/sales/SalesIndex.tsx:33 #: src/pages/sales/SalesIndex.tsx:33
msgid "Return Orders" msgid "Return Orders"
@ -2382,7 +2382,7 @@ msgid "Address"
msgstr "地址" msgstr "地址"
#: src/components/render/ModelType.tsx:199 #: src/components/render/ModelType.tsx:199
#: src/pages/company/CompanyDetail.tsx:258 #: src/pages/company/CompanyDetail.tsx:259
msgid "Addresses" msgid "Addresses"
msgstr "地址" msgstr "地址"
@ -2394,7 +2394,7 @@ msgid "Contact"
msgstr "聯繫人" msgstr "聯繫人"
#: src/components/render/ModelType.tsx:207 #: src/components/render/ModelType.tsx:207
#: src/pages/company/CompanyDetail.tsx:252 #: src/pages/company/CompanyDetail.tsx:253
msgid "Contacts" msgid "Contacts"
msgstr "聯繫人" msgstr "聯繫人"
@ -2512,7 +2512,7 @@ msgstr "配送"
#: src/components/render/Part.tsx:25 #: src/components/render/Part.tsx:25
#: src/components/render/Plugin.tsx:17 #: src/components/render/Plugin.tsx:17
#: src/pages/company/CompanyDetail.tsx:312 #: src/pages/company/CompanyDetail.tsx:313
#: src/pages/company/SupplierPartDetail.tsx:366 #: src/pages/company/SupplierPartDetail.tsx:366
#: src/pages/part/PartDetail.tsx:784 #: src/pages/part/PartDetail.tsx:784
msgid "Inactive" msgid "Inactive"
@ -2552,8 +2552,8 @@ msgstr "序列號"
#: src/tables/build/BuildLineTable.tsx:78 #: src/tables/build/BuildLineTable.tsx:78
#: src/tables/build/BuildOrderTestTable.tsx:205 #: src/tables/build/BuildOrderTestTable.tsx:205
#: src/tables/part/PartPurchaseOrdersTable.tsx:93 #: src/tables/part/PartPurchaseOrdersTable.tsx:93
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:148 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:147
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:179 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:178
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:77 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:77
#: src/tables/sales/ReturnOrderLineItemTable.tsx:114 #: src/tables/sales/ReturnOrderLineItemTable.tsx:114
#: src/tables/stock/StockTrackingTable.tsx:73 #: src/tables/stock/StockTrackingTable.tsx:73
@ -3778,7 +3778,7 @@ msgstr ""
#: src/pages/company/SupplierPartDetail.tsx:172 #: src/pages/company/SupplierPartDetail.tsx:172
#: src/pages/company/SupplierPartDetail.tsx:236 #: src/pages/company/SupplierPartDetail.tsx:236
#: src/pages/stock/StockDetail.tsx:342 #: src/pages/stock/StockDetail.tsx:342
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:200 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:199
msgid "Packaging" msgid "Packaging"
msgstr "包裝" msgstr "包裝"
@ -3800,8 +3800,8 @@ msgstr "庫存單位 (SKU)"
#: src/forms/PurchaseOrderForms.tsx:749 #: src/forms/PurchaseOrderForms.tsx:749
#: src/tables/part/PartPurchaseOrdersTable.tsx:126 #: src/tables/part/PartPurchaseOrdersTable.tsx:126
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:186 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:185
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:249 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:252
#: src/tables/sales/ReturnOrderLineItemTable.tsx:160 #: src/tables/sales/ReturnOrderLineItemTable.tsx:160
msgid "Received" msgid "Received"
msgstr "已接收" msgstr "已接收"
@ -4200,7 +4200,7 @@ msgstr ""
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: src/pages/Auth/Logged-In.tsx:22 #: src/pages/Auth/Logged-In.tsx:25
msgid "Checking if you are already logged in" msgid "Checking if you are already logged in"
msgstr "檢查您是否已經登錄" msgstr "檢查您是否已經登錄"
@ -5130,7 +5130,7 @@ msgid "Labels"
msgstr "標籤" msgstr "標籤"
#: src/pages/Index/Settings/SystemSettings.tsx:156 #: src/pages/Index/Settings/SystemSettings.tsx:156
#: src/pages/Index/Settings/UserSettings.tsx:101 #: src/pages/Index/Settings/UserSettings.tsx:103
msgid "Reporting" msgid "Reporting"
msgstr "報告" msgstr "報告"
@ -5520,23 +5520,23 @@ msgstr "生產訂單"
#~ msgid "New Build Order" #~ msgid "New Build Order"
#~ msgstr "New Build Order" #~ msgstr "New Build Order"
#: src/pages/company/CompanyDetail.tsx:99 #: src/pages/company/CompanyDetail.tsx:100
msgid "Website" msgid "Website"
msgstr "網站" msgstr "網站"
#: src/pages/company/CompanyDetail.tsx:107 #: src/pages/company/CompanyDetail.tsx:108
msgid "Phone Number" msgid "Phone Number"
msgstr "電話號碼" msgstr "電話號碼"
#: src/pages/company/CompanyDetail.tsx:114 #: src/pages/company/CompanyDetail.tsx:115
msgid "Email Address" msgid "Email Address"
msgstr "電子郵件地址" msgstr "電子郵件地址"
#: src/pages/company/CompanyDetail.tsx:124 #: src/pages/company/CompanyDetail.tsx:125
msgid "Default Currency" msgid "Default Currency"
msgstr "默認貨幣單位" msgstr "默認貨幣單位"
#: src/pages/company/CompanyDetail.tsx:129 #: src/pages/company/CompanyDetail.tsx:130
#: src/pages/company/SupplierDetail.tsx:8 #: src/pages/company/SupplierDetail.tsx:8
#: src/pages/company/SupplierPartDetail.tsx:129 #: src/pages/company/SupplierPartDetail.tsx:129
#: src/pages/company/SupplierPartDetail.tsx:235 #: src/pages/company/SupplierPartDetail.tsx:235
@ -5549,7 +5549,7 @@ msgstr "默認貨幣單位"
msgid "Supplier" msgid "Supplier"
msgstr "供應商" msgstr "供應商"
#: src/pages/company/CompanyDetail.tsx:135 #: src/pages/company/CompanyDetail.tsx:136
#: src/pages/company/ManufacturerDetail.tsx:8 #: src/pages/company/ManufacturerDetail.tsx:8
#: src/pages/company/ManufacturerPartDetail.tsx:103 #: src/pages/company/ManufacturerPartDetail.tsx:103
#: src/pages/company/ManufacturerPartDetail.tsx:265 #: src/pages/company/ManufacturerPartDetail.tsx:265
@ -5558,7 +5558,7 @@ msgstr "供應商"
msgid "Manufacturer" msgid "Manufacturer"
msgstr "製造商" msgstr "製造商"
#: src/pages/company/CompanyDetail.tsx:141 #: src/pages/company/CompanyDetail.tsx:142
#: src/pages/company/CustomerDetail.tsx:8 #: src/pages/company/CustomerDetail.tsx:8
#: src/pages/part/pricing/SaleHistoryPanel.tsx:31 #: src/pages/part/pricing/SaleHistoryPanel.tsx:31
#: src/pages/sales/ReturnOrderDetail.tsx:104 #: src/pages/sales/ReturnOrderDetail.tsx:104
@ -5572,7 +5572,7 @@ msgstr "製造商"
msgid "Customer" msgid "Customer"
msgstr "客户" msgstr "客户"
#: src/pages/company/CompanyDetail.tsx:174 #: src/pages/company/CompanyDetail.tsx:175
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
@ -5580,32 +5580,32 @@ msgstr ""
#~ msgid "Edit company" #~ msgid "Edit company"
#~ msgstr "Edit company" #~ msgstr "Edit company"
#: src/pages/company/CompanyDetail.tsx:180 #: src/pages/company/CompanyDetail.tsx:181
msgid "Manufactured Parts" msgid "Manufactured Parts"
msgstr "製成零件" msgstr "製成零件"
#: src/pages/company/CompanyDetail.tsx:189
msgid "Supplied Parts"
msgstr "已提供的零件"
#: src/pages/company/CompanyDetail.tsx:189 #: src/pages/company/CompanyDetail.tsx:189
#~ msgid "Delete company" #~ msgid "Delete company"
#~ msgstr "Delete company" #~ msgstr "Delete company"
#: src/pages/company/CompanyDetail.tsx:236 #: src/pages/company/CompanyDetail.tsx:190
msgid "Supplied Parts"
msgstr "已提供的零件"
#: src/pages/company/CompanyDetail.tsx:237
msgid "Assigned Stock" msgid "Assigned Stock"
msgstr "已分配的庫存" msgstr "已分配的庫存"
#: src/pages/company/CompanyDetail.tsx:276 #: src/pages/company/CompanyDetail.tsx:277
#: src/tables/company/CompanyTable.tsx:87 #: src/tables/company/CompanyTable.tsx:87
msgid "Edit Company" msgid "Edit Company"
msgstr "編輯公司" msgstr "編輯公司"
#: src/pages/company/CompanyDetail.tsx:284 #: src/pages/company/CompanyDetail.tsx:285
msgid "Delete Company" msgid "Delete Company"
msgstr "刪除該公司" msgstr "刪除該公司"
#: src/pages/company/CompanyDetail.tsx:294 #: src/pages/company/CompanyDetail.tsx:295
msgid "Company Actions" msgid "Company Actions"
msgstr "公司操作" msgstr "公司操作"
@ -5682,8 +5682,8 @@ msgstr "零件描述"
#: src/pages/company/SupplierPartDetail.tsx:179 #: src/pages/company/SupplierPartDetail.tsx:179
#: src/tables/part/PartPurchaseOrdersTable.tsx:72 #: src/tables/part/PartPurchaseOrdersTable.tsx:72
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:164 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:163
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:205 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:204
#: src/tables/purchasing/SupplierPartTable.tsx:133 #: src/tables/purchasing/SupplierPartTable.tsx:133
msgid "Pack Quantity" msgid "Pack Quantity"
msgstr "包裝數量" msgstr "包裝數量"
@ -6111,7 +6111,7 @@ msgstr "訂單庫存"
msgid "Part Actions" msgid "Part Actions"
msgstr "零件選項" msgstr "零件選項"
#: src/pages/part/PartDetail.tsx:1013 #: src/pages/part/PartDetail.tsx:1019
msgid "Select Part Revision" msgid "Select Part Revision"
msgstr "選擇零件版本" msgstr "選擇零件版本"
@ -6252,6 +6252,7 @@ msgstr "製造商"
#: src/tables/ColumnRenderers.tsx:315 #: src/tables/ColumnRenderers.tsx:315
#: src/tables/bom/BomTable.tsx:187 #: src/tables/bom/BomTable.tsx:187
#: src/tables/general/ExtraLineItemTable.tsx:64 #: src/tables/general/ExtraLineItemTable.tsx:64
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:231
#: src/tables/purchasing/PurchaseOrderTable.tsx:147 #: src/tables/purchasing/PurchaseOrderTable.tsx:147
#: src/tables/sales/ReturnOrderTable.tsx:157 #: src/tables/sales/ReturnOrderTable.tsx:157
#: src/tables/sales/SalesOrderLineItemTable.tsx:113 #: src/tables/sales/SalesOrderLineItemTable.tsx:113
@ -6295,7 +6296,7 @@ msgstr "最高價格"
#: src/pages/stock/StockDetail.tsx:313 #: src/pages/stock/StockDetail.tsx:313
#: src/tables/bom/BomTable.tsx:178 #: src/tables/bom/BomTable.tsx:178
#: src/tables/general/ExtraLineItemTable.tsx:56 #: src/tables/general/ExtraLineItemTable.tsx:56
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:227 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:226
#: src/tables/purchasing/SupplierPriceBreakTable.tsx:92 #: src/tables/purchasing/SupplierPriceBreakTable.tsx:92
#: src/tables/stock/StockItemTable.tsx:246 #: src/tables/stock/StockItemTable.tsx:246
msgid "Unit Price" msgid "Unit Price"
@ -6468,7 +6469,7 @@ msgid "Completed Line Items"
msgstr "已完成行項目" msgstr "已完成行項目"
#: src/pages/purchasing/PurchaseOrderDetail.tsx:173 #: src/pages/purchasing/PurchaseOrderDetail.tsx:173
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:233 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:236
msgid "Destination" msgid "Destination"
msgstr "目的地" msgstr "目的地"
@ -7993,8 +7994,8 @@ msgid "View Item"
msgstr "" msgstr ""
#: src/tables/general/ExtraLineItemTable.tsx:86 #: src/tables/general/ExtraLineItemTable.tsx:86
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:265 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:268
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:364 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:367
#: src/tables/sales/ReturnOrderLineItemTable.tsx:72 #: src/tables/sales/ReturnOrderLineItemTable.tsx:72
#: src/tables/sales/ReturnOrderLineItemTable.tsx:176 #: src/tables/sales/ReturnOrderLineItemTable.tsx:176
#: src/tables/sales/SalesOrderLineItemTable.tsx:222 #: src/tables/sales/SalesOrderLineItemTable.tsx:222
@ -8003,14 +8004,14 @@ msgid "Add Line Item"
msgstr "添加行項目" msgstr "添加行項目"
#: src/tables/general/ExtraLineItemTable.tsx:98 #: src/tables/general/ExtraLineItemTable.tsx:98
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:285 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:288
#: src/tables/sales/ReturnOrderLineItemTable.tsx:84 #: src/tables/sales/ReturnOrderLineItemTable.tsx:84
#: src/tables/sales/SalesOrderLineItemTable.tsx:240 #: src/tables/sales/SalesOrderLineItemTable.tsx:240
msgid "Edit Line Item" msgid "Edit Line Item"
msgstr "編輯行項目" msgstr "編輯行項目"
#: src/tables/general/ExtraLineItemTable.tsx:106 #: src/tables/general/ExtraLineItemTable.tsx:106
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:293 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:296
#: src/tables/sales/ReturnOrderLineItemTable.tsx:92 #: src/tables/sales/ReturnOrderLineItemTable.tsx:92
#: src/tables/sales/SalesOrderLineItemTable.tsx:248 #: src/tables/sales/SalesOrderLineItemTable.tsx:248
msgid "Delete Line Item" msgid "Delete Line Item"
@ -8360,7 +8361,7 @@ msgstr "刪除零件參數模板"
#~ msgstr "Add parameter template" #~ msgstr "Add parameter template"
#: src/tables/part/PartPurchaseOrdersTable.tsx:78 #: src/tables/part/PartPurchaseOrdersTable.tsx:78
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:170 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:169
msgid "Total Quantity" msgid "Total Quantity"
msgstr "總數量" msgstr "總數量"
@ -8908,28 +8909,28 @@ msgstr "刪除參數"
#~ msgid "Are you sure you want to remove this manufacturer part?" #~ msgid "Are you sure you want to remove this manufacturer part?"
#~ msgstr "Are you sure you want to remove this manufacturer part?" #~ msgstr "Are you sure you want to remove this manufacturer part?"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:103 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:102
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:358 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:361
msgid "Import Line Items" msgid "Import Line Items"
msgstr "導入行項目" msgstr "導入行項目"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:209 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:208
msgid "Supplier Code" msgid "Supplier Code"
msgstr "供應商代碼" msgstr "供應商代碼"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:216 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:215
msgid "Supplier Link" msgid "Supplier Link"
msgstr "供應商鏈接" msgstr "供應商鏈接"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:222 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:221
msgid "Manufacturer Code" msgid "Manufacturer Code"
msgstr "製造商編號" msgstr "製造商編號"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:250 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:253
msgid "Show line items which have been received" msgid "Show line items which have been received"
msgstr "" msgstr ""
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:318 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:321
msgid "Receive line item" msgid "Receive line item"
msgstr "接收這行項目" msgstr "接收這行項目"
@ -8939,7 +8940,7 @@ msgstr "接收這行項目"
#~ msgid "Add line item" #~ msgid "Add line item"
#~ msgstr "Add line item" #~ msgstr "Add line item"
#: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:375 #: src/tables/purchasing/PurchaseOrderLineItemTable.tsx:378
msgid "Receive items" msgid "Receive items"
msgstr "收到項目" msgstr "收到項目"

View File

@ -55,7 +55,8 @@ export default function UserSettings() {
'PART_SHOW_QUANTITY_IN_FORMS', 'PART_SHOW_QUANTITY_IN_FORMS',
'DISPLAY_SCHEDULE_TAB', 'DISPLAY_SCHEDULE_TAB',
'DISPLAY_STOCKTAKE_TAB', 'DISPLAY_STOCKTAKE_TAB',
'TABLE_STRING_MAX_LENGTH' 'TABLE_STRING_MAX_LENGTH',
'ENABLE_LAST_BREADCRUMB'
]} ]}
/> />
) )

View File

@ -542,8 +542,8 @@ export default function BuildDetail() {
editAction={editBuild.open} editAction={editBuild.open}
editEnabled={user.hasChangePermission(ModelType.part)} editEnabled={user.hasChangePermission(ModelType.part)}
imageUrl={build.part_detail?.image ?? build.part_detail?.thumbnail} imageUrl={build.part_detail?.image ?? build.part_detail?.thumbnail}
breadcrumbs={[ breadcrumbs={[{ name: t`Manufacturing`, url: '/manufacturing' }]}
{ name: t`Manufacturing`, url: '/manufacturing' }, lastCrumb={[
{ {
name: build.reference, name: build.reference,
url: getDetailUrl(ModelType.build, build.pk) url: getDetailUrl(ModelType.build, build.pk)

View File

@ -58,6 +58,7 @@ import { StockItemTable } from '../../tables/stock/StockItemTable';
export type CompanyDetailProps = { export type CompanyDetailProps = {
title: string; title: string;
breadcrumbs: Breadcrumb[]; breadcrumbs: Breadcrumb[];
last_crumb_url: string;
}; };
/** /**
@ -328,6 +329,12 @@ export default function CompanyDetail(props: Readonly<CompanyDetailProps>) {
actions={companyActions} actions={companyActions}
imageUrl={company.image} imageUrl={company.image}
breadcrumbs={props.breadcrumbs} breadcrumbs={props.breadcrumbs}
lastCrumb={[
{
name: company.name,
url: `${props.last_crumb_url}/${company.pk}/`
}
]}
badges={badges} badges={badges}
editAction={editCompany.open} editAction={editCompany.open}
editEnabled={user.hasChangePermission(ModelType.company)} editEnabled={user.hasChangePermission(ModelType.company)}

View File

@ -7,6 +7,7 @@ export default function CustomerDetail() {
<CompanyDetail <CompanyDetail
title={t`Customer`} title={t`Customer`}
breadcrumbs={[{ name: t`Sales`, url: '/sales/' }]} breadcrumbs={[{ name: t`Sales`, url: '/sales/' }]}
last_crumb_url='/sales/customer'
/> />
); );
} }

View File

@ -7,6 +7,7 @@ export default function ManufacturerDetail() {
<CompanyDetail <CompanyDetail
title={t`Manufacturer`} title={t`Manufacturer`}
breadcrumbs={[{ name: t`Purchasing`, url: '/purchasing/' }]} breadcrumbs={[{ name: t`Purchasing`, url: '/purchasing/' }]}
last_crumb_url='/purchasing/manufacturer'
/> />
); );
} }

View File

@ -279,6 +279,15 @@ export default function ManufacturerPartDetail() {
title={t`ManufacturerPart`} title={t`ManufacturerPart`}
subtitle={`${manufacturerPart.MPN} - ${manufacturerPart.part_detail?.name}`} subtitle={`${manufacturerPart.MPN} - ${manufacturerPart.part_detail?.name}`}
breadcrumbs={breadcrumbs} breadcrumbs={breadcrumbs}
lastCrumb={[
{
name: manufacturerPart.MPN,
url: getDetailUrl(
ModelType.manufacturerpart,
manufacturerPart.pk
)
}
]}
actions={manufacturerPartActions} actions={manufacturerPartActions}
imageUrl={manufacturerPart?.part_detail?.thumbnail} imageUrl={manufacturerPart?.part_detail?.thumbnail}
editAction={editManufacturerPart.open} editAction={editManufacturerPart.open}

View File

@ -7,6 +7,7 @@ export default function SupplierDetail() {
<CompanyDetail <CompanyDetail
title={t`Supplier`} title={t`Supplier`}
breadcrumbs={[{ name: t`Purchasing`, url: '/purchasing/' }]} breadcrumbs={[{ name: t`Purchasing`, url: '/purchasing/' }]}
last_crumb_url='/purchasing/supplier'
/> />
); );
} }

View File

@ -407,6 +407,12 @@ export default function SupplierPartDetail() {
title={t`Supplier Part`} title={t`Supplier Part`}
subtitle={`${supplierPart.SKU} - ${supplierPart?.part_detail?.name}`} subtitle={`${supplierPart.SKU} - ${supplierPart?.part_detail?.name}`}
breadcrumbs={breadcrumbs} breadcrumbs={breadcrumbs}
lastCrumb={[
{
name: supplierPart.SKU,
url: `/purchasing/supplier-part/${supplierPart.pk}/`
}
]}
badges={badges} badges={badges}
actions={supplierPartActions} actions={supplierPartActions}
imageUrl={supplierPart?.part_detail?.thumbnail} imageUrl={supplierPart?.part_detail?.thumbnail}

Some files were not shown because too many files have changed in this diff Show More